Repository: incubator-apex-malhar Updated Branches: refs/heads/master 377190a7d -> 2df7000ed
APEXMALHAR-1859 tracking violation per malhar module Project: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/commit/2df7000e Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/tree/2df7000e Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/diff/2df7000e Branch: refs/heads/master Commit: 2df7000ed19b54ac913de263e661fbe57fdd1679 Parents: 377190a Author: Chandni Singh <[email protected]> Authored: Fri Feb 19 16:44:02 2016 -0800 Committer: Chandni Singh <[email protected]> Committed: Mon Feb 22 12:10:15 2016 -0800 ---------------------------------------------------------------------- contrib/pom.xml | 9 +++++++++ demos/pom.xml | 7 +++++++ kafka/pom.xml | 8 ++++++++ library/pom.xml | 8 ++++++++ pom.xml | 14 +++++++------- 5 files changed, 39 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/2df7000e/contrib/pom.xml ---------------------------------------------------------------------- diff --git a/contrib/pom.xml b/contrib/pom.xml index b994928..687e9c9 100755 --- a/contrib/pom.xml +++ b/contrib/pom.xml @@ -215,6 +215,15 @@ <groupId>com.github.siom79.japicmp</groupId> <artifactId>japicmp-maven-plugin</artifactId> </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <configuration> + <maxAllowedViolations>2754</maxAllowedViolations> + <consoleOutput>false</consoleOutput> + </configuration> + </plugin> </plugins> </build> http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/2df7000e/demos/pom.xml ---------------------------------------------------------------------- diff --git a/demos/pom.xml b/demos/pom.xml index e650ea2..5f96934 100644 --- a/demos/pom.xml +++ b/demos/pom.xml @@ -160,6 +160,13 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> </plugins> </build> </profile> http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/2df7000e/kafka/pom.xml ---------------------------------------------------------------------- diff --git a/kafka/pom.xml b/kafka/pom.xml index 2c2dd17..556a703 100755 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -174,6 +174,14 @@ </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <configuration> + <maxAllowedViolations>35</maxAllowedViolations> + <consoleOutput>false</consoleOutput> + </configuration> + </plugin> </plugins> </build> http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/2df7000e/library/pom.xml ---------------------------------------------------------------------- diff --git a/library/pom.xml b/library/pom.xml index 8d39ae4..5ff8842 100644 --- a/library/pom.xml +++ b/library/pom.xml @@ -182,6 +182,14 @@ <groupId>com.github.siom79.japicmp</groupId> <artifactId>japicmp-maven-plugin</artifactId> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <configuration> + <maxAllowedViolations>15966</maxAllowedViolations> + <consoleOutput>false</consoleOutput> + </configuration> + </plugin> </plugins> </build> http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/2df7000e/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 7d804f6..09c3755 100644 --- a/pom.xml +++ b/pom.xml @@ -90,13 +90,6 @@ </excludes> </configuration> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-checkstyle-plugin</artifactId> - <configuration> - <maxAllowedViolations>15967</maxAllowedViolations> - </configuration> - </plugin> </plugins> <pluginManagement> <plugins> @@ -145,6 +138,13 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <configuration> + <consoleOutput>true</consoleOutput> + </configuration> + </plugin> </plugins> </pluginManagement> </build>
