Repository: beam Updated Branches: refs/heads/master 5ca149de2 -> 8b2e8f295
Revert "[BEAM-1513] Skip slower verifications if '-DskipTests' specified" This reverts commit 22ace8581d6758015d3beff3850c5ee9017b2dd9. Project: http://git-wip-us.apache.org/repos/asf/beam/repo Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/8b2e8f29 Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/8b2e8f29 Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/8b2e8f29 Branch: refs/heads/master Commit: 8b2e8f295763c622e9fee71ea27d0189e098d8a9 Parents: 5ca149d Author: Jean-Baptiste Onofré <[email protected]> Authored: Wed Feb 22 15:42:50 2017 +0100 Committer: Jean-Baptiste Onofré <[email protected]> Committed: Wed Feb 22 15:42:50 2017 +0100 ---------------------------------------------------------------------- examples/pom.xml | 19 ++++++++++--------- pom.xml | 9 ++------- runners/apex/pom.xml | 22 ++++++---------------- runners/pom.xml | 18 +++++++++--------- sdks/pom.xml | 16 +++++++--------- 5 files changed, 34 insertions(+), 50 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/8b2e8f29/examples/pom.xml ---------------------------------------------------------------------- diff --git a/examples/pom.xml b/examples/pom.xml index 070ec9c..550578b 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -48,23 +48,24 @@ </profile> <profile> <id>release</id> - <activation> - <property> - <name>!quick</name> - </property> - </activation> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-checkstyle-plugin</artifactId> - </plugin> </plugins> </build> </profile> </profiles> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + </plugin> + </plugins> + </build> + </project> http://git-wip-us.apache.org/repos/asf/beam/blob/8b2e8f29/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 0a7b79f..f3dc265 100644 --- a/pom.xml +++ b/pom.xml @@ -136,7 +136,7 @@ <storage.version>v1-rev71-1.22.0</storage.version> <woodstox.version>4.4.1</woodstox.version> <spring.version>4.3.5.RELEASE</spring.version> - + <compiler.error.flag>-Werror</compiler.error.flag> <compiler.default.pkginfo.flag>-Xpkginfo:always</compiler.default.pkginfo.flag> <compiler.default.exclude>nothing</compiler.default.exclude> @@ -161,11 +161,6 @@ to this profile. --> <profile> <id>release</id> - <activation> - <property> - <name>!quick</name> - </property> - </activation> <build> <pluginManagement> <plugins> @@ -890,7 +885,7 @@ <artifactId>byte-buddy</artifactId> <version>1.6.8</version> </dependency> - + <dependency> <groupId>org.springframework</groupId> <artifactId>spring-expression</artifactId> http://git-wip-us.apache.org/repos/asf/beam/blob/8b2e8f29/runners/apex/pom.xml ---------------------------------------------------------------------- diff --git a/runners/apex/pom.xml b/runners/apex/pom.xml index 6dc5912..f45e2df 100644 --- a/runners/apex/pom.xml +++ b/runners/apex/pom.xml @@ -48,22 +48,6 @@ <skipIntegrationTests>false</skipIntegrationTests> </properties> </profile> - <profile> - <id>release</id> - <activation> - <property> - <name>!quick</name> - </property> - </activation> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-checkstyle-plugin</artifactId> - </plugin> - </plugins> - </build> - </profile> </profiles> <dependencies> @@ -190,6 +174,12 @@ <build> <plugins> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + </plugin> + <!-- Integration Tests --> <plugin> <groupId>org.apache.maven.plugins</groupId> http://git-wip-us.apache.org/repos/asf/beam/blob/8b2e8f29/runners/pom.xml ---------------------------------------------------------------------- diff --git a/runners/pom.xml b/runners/pom.xml index 0a9ce46..3f74f7b 100644 --- a/runners/pom.xml +++ b/runners/pom.xml @@ -45,21 +45,12 @@ <profiles> <profile> <id>release</id> - <activation> - <property> - <name>!quick</name> - </property> - </activation> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-checkstyle-plugin</artifactId> - </plugin> </plugins> </build> </profile> @@ -104,4 +95,13 @@ </build> </profile> </profiles> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + </plugin> + </plugins> + </build> </project> http://git-wip-us.apache.org/repos/asf/beam/blob/8b2e8f29/sdks/pom.xml ---------------------------------------------------------------------- diff --git a/sdks/pom.xml b/sdks/pom.xml index da53968..f130816 100644 --- a/sdks/pom.xml +++ b/sdks/pom.xml @@ -41,21 +41,12 @@ <profiles> <profile> <id>release</id> - <activation> - <property> - <name>!quick</name> - </property> - </activation> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-checkstyle-plugin</artifactId> - </plugin> </plugins> </build> </profile> @@ -79,6 +70,13 @@ </plugin> </plugins> </pluginManagement> + + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + </plugin> + </plugins> </build> </project>
