You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by bo...@apache.org on 2022/12/03 19:26:13 UTC

[streampipes] branch 833-streampipes-archetype-pe-processors-flink updated: [#833] enable checkstyle for streampipes-archetype-pe-processors-flink

This is an automated email from the ASF dual-hosted git repository.

bossenti pushed a commit to branch 833-streampipes-archetype-pe-processors-flink
in repository https://gitbox.apache.org/repos/asf/streampipes.git


The following commit(s) were added to refs/heads/833-streampipes-archetype-pe-processors-flink by this push:
     new ae0343273 [#833] enable checkstyle for streampipes-archetype-pe-processors-flink
ae0343273 is described below

commit ae03432738c492c54d3fc460ea101a9deb347ee1
Author: bossenti <bo...@posteo.de>
AuthorDate: Sat Dec 3 20:25:56 2022 +0100

    [#833] enable checkstyle for streampipes-archetype-pe-processors-flink
---
 .../streampipes-archetype-pe-processors-flink/pom.xml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/archetypes/streampipes-archetype-pe-processors-flink/pom.xml b/archetypes/streampipes-archetype-pe-processors-flink/pom.xml
index 31ff42f00..d97a720e6 100644
--- a/archetypes/streampipes-archetype-pe-processors-flink/pom.xml
+++ b/archetypes/streampipes-archetype-pe-processors-flink/pom.xml
@@ -47,6 +47,25 @@
                 </plugin>
             </plugins>
         </pluginManagement>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>validate</id>
+                        <phase>validate</phase>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <logViolationsToConsole>true</logViolationsToConsole>
+                    <failOnViolation>true</failOnViolation>
+                </configuration>
+            </plugin>
+        </plugins>
     </build>
 
 </project>