Skip to content

Commit

Permalink
Update Maven build machinery.
Browse files Browse the repository at this point in the history
* Tycho 1.2.0 -> 1.3.0
* Maven compiler plugin 3.7.0 -> 3.8.0
* Maven enforcer 3.0.0 M1 -> 3.0.0 M2
* Maven resources plugin 3.0.2 -> 3.1.0
* Findbugs -> Spotbugs (as it's the maintained fork)
* Maven pmd plugin 3.9.0 -> 3.11.0

Change-Id: Ia1d9b8d52dd59b8c508f7008a20cee38b0e2e627
Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
  • Loading branch information
akurtakov committed Feb 28, 2019
1 parent fd82e2d commit 7bccf78
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions org.eclipse.epp.mpc-parent/bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
<artifactId>tycho-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
16 changes: 8 additions & 8 deletions org.eclipse.epp.mpc-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<enforced.java.version>[1.8.0,)</enforced.java.version>
<java-jdk>SYSTEM</java-jdk>

<tycho-version>1.2.0</tycho-version>
<tycho-version>1.3.0</tycho-version>
<tycho-extras-version>${tycho-version}</tycho-extras-version>

<qualifier-format>'v'yyyyMMdd-HHmm</qualifier-format>
Expand Down Expand Up @@ -162,7 +162,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<version>3.8.0</version>
<configuration>
<source>${java-version}</source>
<target>${java-version}</target>
Expand All @@ -182,7 +182,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M1</version>
<version>3.0.0-M2</version>
<executions>
<execution>
<id>enforce-java</id>
Expand Down Expand Up @@ -317,16 +317,16 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
<version>3.1.0</version>
<configuration>
<encoding>ISO-8859-1</encoding>
</configuration>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.5</version>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>3.1.10</version>
<configuration>
<findbugsXmlOutput>true</findbugsXmlOutput>
<failOnError>false</failOnError>
Expand All @@ -350,7 +350,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.9.0</version>
<version>3.11.0</version>
<configuration>
<sourceEncoding>utf-8</sourceEncoding>
<minimumTokens>100</minimumTokens>
Expand Down

0 comments on commit 7bccf78

Please sign in to comment.