Skip to content

Commit

Permalink
Merge 0e4f13a into 8cfb3d1
Browse files Browse the repository at this point in the history
  • Loading branch information
aviemzur committed Feb 21, 2017
2 parents 8cfb3d1 + 0e4f13a commit cb3f65b
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 44 deletions.
19 changes: 9 additions & 10 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,24 +48,23 @@
</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>
29 changes: 17 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
<stax2.version>3.1.4</stax2.version>
<storage.version>v1-rev71-1.22.0</storage.version>
<woodstox.version>4.4.1</woodstox.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>
Expand All @@ -155,11 +155,16 @@
</modules>

<profiles>
<!-- A global profile defined for all modules for release-level verification.
Optional processes such as building source and javadoc should be limited
<!-- A global profile defined for all modules for release-level verification.
Optional processes such as building source and javadoc should be limited
to this profile. -->
<profile>
<id>release</id>
<activation>
<property>
<name>!quick</name>
</property>
</activation>
<build>
<pluginManagement>
<plugins>
Expand Down Expand Up @@ -643,13 +648,13 @@
<artifactId>google-auth-library-credentials</artifactId>
<version>${google-auth.version}</version>
</dependency>

<dependency>
<groupId>com.google.auth</groupId>
<artifactId>google-auth-library-oauth2-http</artifactId>
<version>${google-auth.version}</version>
<exclusions>
<!-- Exclude an old version of guava that is being pulled in by a transitive
<!-- Exclude an old version of guava that is being pulled in by a transitive
dependency of google-api-client -->
<exclusion>
<groupId>com.google.guava</groupId>
Expand Down Expand Up @@ -719,7 +724,7 @@
<artifactId>google-api-services-storage</artifactId>
<version>${storage.version}</version>
<exclusions>
<!-- Exclude an old version of guava that is being pulled in by a transitive
<!-- Exclude an old version of guava that is being pulled in by a transitive
dependency of google-api-client -->
<exclusion>
<groupId>com.google.guava</groupId>
Expand Down Expand Up @@ -775,7 +780,7 @@
<artifactId>google-api-services-dataflow</artifactId>
<version>${dataflow.version}</version>
<exclusions>
<!-- Exclude an old version of guava that is being pulled in by a transitive
<!-- Exclude an old version of guava that is being pulled in by a transitive
dependency of google-api-client -->
<exclusion>
<groupId>com.google.guava</groupId>
Expand All @@ -789,7 +794,7 @@
<artifactId>google-api-services-clouddebugger</artifactId>
<version>${clouddebugger.version}</version>
<exclusions>
<!-- Exclude an old version of guava that is being pulled in by a transitive
<!-- Exclude an old version of guava that is being pulled in by a transitive
dependency of google-api-client -->
<exclusion>
<groupId>com.google.guava</groupId>
Expand Down Expand Up @@ -966,7 +971,7 @@
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
Expand Down Expand Up @@ -1142,13 +1147,13 @@
<artifactId>versions-maven-plugin</artifactId>
<version>2.3</version>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.12</version>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
Expand Down Expand Up @@ -1230,7 +1235,7 @@
</configuration>
</plugin>

<!-- This plugin's configuration tells the m2e plugin how to import this
<!-- This plugin's configuration tells the m2e plugin how to import this
Maven project into the Eclipse environment. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
Expand Down
22 changes: 16 additions & 6 deletions runners/apex/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,22 @@
<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>
Expand Down Expand Up @@ -174,12 +190,6 @@

<build>
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>

<!-- Integration Tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
18 changes: 9 additions & 9 deletions runners/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,21 @@
<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>
Expand Down Expand Up @@ -95,13 +104,4 @@
</build>
</profile>
</profiles>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
16 changes: 9 additions & 7 deletions sdks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,21 @@
<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>
Expand All @@ -70,13 +79,6 @@
</plugin>
</plugins>
</pluginManagement>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
</plugins>
</build>

</project>

0 comments on commit cb3f65b

Please sign in to comment.