Skip to content

Commit

Permalink
using maven 3.3.3 to keep consistency with other maven plugins. (#832)
Browse files Browse the repository at this point in the history
* using maven 3.3.3 to keep consistency with other maven plugins.
  • Loading branch information
andxu authored Sep 24, 2019
1 parent 3baf62d commit 85e413a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,6 @@ hs_err_pid*

# integration test
*/src/it/*/bin

jacoco.exec
bin/
4 changes: 2 additions & 2 deletions azure-auth-helper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<commons.lang3.version>3.9</commons.lang3.version>
<jetty.server.version>9.4.20.v20190813</jetty.server.version>
<jsonwebtoken.jjwt.version>0.9.1</jsonwebtoken.jjwt.version>
<maven.version>3.5.0</maven.version>
<maven.version>3.3.3</maven.version>
<mockito.version>2.28.2</mockito.version>
<powermock.version>2.0.2</powermock.version>
<surefire.version>2.22.0</surefire.version>
Expand Down Expand Up @@ -201,7 +201,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5</version>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
Expand Down
2 changes: 1 addition & 1 deletion azure-maven-plugin-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5</version>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
Expand Down
12 changes: 6 additions & 6 deletions azure-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.version>3.5</maven.version>
<maven.version>3.3.3</maven.version>
<junit.version>4.12</junit.version>
<version.slf4j>1.7.25</version.slf4j>
<version.maven-core>3.5.0</version.maven-core>
<version.maven-plugin-annotations>3.5</version.maven-plugin-annotations>
<version.maven-plugin-plugin>3.5</version.maven-plugin-plugin>
<version.maven-core>3.3.3</version.maven-core>
<version.maven-plugin-annotations>3.3</version.maven-plugin-annotations>
<version.maven-plugin-plugin>3.3</version.maven-plugin-plugin>
<version.maven-plugin-testing-harness>3.3.0</version.maven-plugin-testing-harness>
<powermock.version>2.0.2</powermock.version>
<surefire.version>2.22.0</surefire.version>
Expand Down Expand Up @@ -108,7 +108,7 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.5.0</version>
<version>3.3.3</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -279,7 +279,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>${maven.version}</version>
<version>3.6.0</version>
<configuration>
<goalPrefix>azure</goalPrefix>
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
Expand Down
7 changes: 4 additions & 3 deletions azure-spring-cloud-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.version>3.5.0</maven.version>
<maven.version>3.3.3</maven.version>
<junit.version>4.12</junit.version>
<powermock.version>2.0.2</powermock.version>
<azure.maven-plugin-common.version>0.1.0-SNAPSHOT</azure.maven-plugin-common.version>
Expand Down Expand Up @@ -138,7 +138,7 @@
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.6.0</version>
<version>3.3</version>
<scope>provided</scope>
</dependency>
<!-- TEST -->
Expand Down Expand Up @@ -198,7 +198,7 @@
</plugin>
<plugin>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.6.0</version>
<version>3.3</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down Expand Up @@ -322,6 +322,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
</configuration>
Expand Down

0 comments on commit 85e413a

Please sign in to comment.