Repository: incubator-apex-malhar Updated Branches: refs/heads/master 802240045 -> 89513c266
APEXMALHAR-2043 using property logViolationsToConsole instead of consoleOutput 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/29ea6020 Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/tree/29ea6020 Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/diff/29ea6020 Branch: refs/heads/master Commit: 29ea60200055aca0d059d5c5fd2dc6b2e78b3be0 Parents: b4fd6a6 Author: Chandni Singh <[email protected]> Authored: Mon Apr 4 17:46:00 2016 -0700 Committer: Chandni Singh <[email protected]> Committed: Mon Apr 4 17:46:00 2016 -0700 ---------------------------------------------------------------------- contrib/pom.xml | 3 ++- kafka/pom.xml | 6 +++++- library/pom.xml | 3 ++- pom.xml | 4 ---- 4 files changed, 9 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/29ea6020/contrib/pom.xml ---------------------------------------------------------------------- diff --git a/contrib/pom.xml b/contrib/pom.xml index 92dbd3b..460f5a5 100755 --- a/contrib/pom.xml +++ b/contrib/pom.xml @@ -36,6 +36,7 @@ <!-- skip tests by default as they depend on manual setup --> <skip.contrib.module.tests>false</skip.contrib.module.tests> <skipTests>true</skipTests> + <checkstyle.console>false</checkstyle.console> </properties> <repositories> <repository> @@ -221,7 +222,7 @@ <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <maxAllowedViolations>2791</maxAllowedViolations> - <consoleOutput>false</consoleOutput> + <logViolationsToConsole>${checkstyle.console}</logViolationsToConsole> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/29ea6020/kafka/pom.xml ---------------------------------------------------------------------- diff --git a/kafka/pom.xml b/kafka/pom.xml index 03dd765..d9d5bc9 100755 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -32,6 +32,10 @@ <name>Apache Apex Malhar (incubating) Kafka Support</name> <packaging>jar</packaging> + <properties> + <checkstyle.console>false</checkstyle.console> + </properties> + <build> <plugins> <!-- Publish tests jar --> @@ -178,7 +182,7 @@ <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <maxAllowedViolations>35</maxAllowedViolations> - <consoleOutput>false</consoleOutput> + <logViolationsToConsole>${checkstyle.console}</logViolationsToConsole> </configuration> </plugin> <plugin> http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/29ea6020/library/pom.xml ---------------------------------------------------------------------- diff --git a/library/pom.xml b/library/pom.xml index ffee7f9..b8498e8 100644 --- a/library/pom.xml +++ b/library/pom.xml @@ -35,6 +35,7 @@ <name>Apache Apex Malhar (incubating) Library</name> <properties> + <checkstyle.console>false</checkstyle.console> </properties> <build> @@ -187,7 +188,7 @@ <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <maxAllowedViolations>15995</maxAllowedViolations> - <consoleOutput>false</consoleOutput> + <logViolationsToConsole>${checkstyle.console}</logViolationsToConsole> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/29ea6020/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 360ddc9..3cb887e 100644 --- a/pom.xml +++ b/pom.xml @@ -51,7 +51,6 @@ <maven.deploy.skip>false</maven.deploy.skip> <apex.core.version>3.3.0-incubating</apex.core.version> <semver.plugin.skip>false</semver.plugin.skip> - <checkstyle.console>false</checkstyle.console> </properties> <build> @@ -147,9 +146,6 @@ <version>1.0.0-incubating</version> </dependency> </dependencies> - <configuration> - <consoleOutput>true</consoleOutput> - </configuration> </plugin> </plugins> </pluginManagement>
