Skip to content

Commit 9dafe2e

Browse files
committed
Upgrade a bunch of plugins.
1 parent 4013446 commit 9dafe2e

File tree

1 file changed

+22
-18
lines changed

1 file changed

+22
-18
lines changed

pom.xml

Lines changed: 22 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -862,12 +862,12 @@
862862
<plugin>
863863
<groupId>org.apache.maven.plugins</groupId>
864864
<artifactId>maven-assembly-plugin</artifactId>
865-
<version>3.4.2</version>
865+
<version>3.5.0</version>
866866
</plugin>
867867
<plugin>
868868
<groupId>org.apache.maven.plugins</groupId>
869869
<artifactId>maven-dependency-plugin</artifactId>
870-
<version>3.3.0</version>
870+
<version>3.5.0</version>
871871
<configuration>
872872
<usedDependencies>
873873
<dependency>com.sun.jersey:jersey-servlet</dependency>
@@ -901,7 +901,7 @@
901901
<plugin>
902902
<groupId>org.apache.maven.plugins</groupId>
903903
<artifactId>maven-compiler-plugin</artifactId>
904-
<version>3.10.1</version>
904+
<version>3.11.0</version>
905905
<configuration>
906906
<fork>true</fork>
907907
<meminitial>1000m</meminitial>
@@ -912,13 +912,13 @@
912912
<plugin>
913913
<groupId>org.apache.maven.plugins</groupId>
914914
<artifactId>maven-deploy-plugin</artifactId>
915-
<version>3.0.0</version>
915+
<version>3.1.0</version>
916916
</plugin>
917917

918918
<plugin>
919919
<groupId>org.apache.maven.plugins</groupId>
920920
<artifactId>maven-enforcer-plugin</artifactId>
921-
<version>3.1.0</version>
921+
<version>3.2.1</version>
922922
<dependencies>
923923
<dependency>
924924
<groupId>org.codehaus.mojo</groupId>
@@ -985,7 +985,7 @@
985985
<plugin>
986986
<groupId>org.apache.maven.plugins</groupId>
987987
<artifactId>maven-pmd-plugin</artifactId>
988-
<version>3.19.0</version>
988+
<version>3.20.0</version>
989989
<configuration>
990990
<linkXref>true</linkXref>
991991
<targetJdk>${project.java.target}</targetJdk>
@@ -995,7 +995,7 @@
995995
<plugin>
996996
<groupId>org.apache.maven.plugins</groupId>
997997
<artifactId>maven-project-info-reports-plugin</artifactId>
998-
<version>3.4.1</version>
998+
<version>3.4.2</version>
999999
</plugin>
10001000

10011001
<plugin>
@@ -1008,19 +1008,21 @@
10081008
<!-- Note: This uses the maven-fluido-skin version specified next. The skin is referenced in src/site/site.xml. -->
10091009
<groupId>org.apache.maven.plugins</groupId>
10101010
<artifactId>maven-site-plugin</artifactId>
1011-
<version>4.0.0-M3</version>
1012-
</plugin>
1013-
1014-
<plugin>
1015-
<groupId>org.apache.maven.skins</groupId>
1016-
<artifactId>maven-fluido-skin</artifactId>
1017-
<version>1.11.1</version>
1011+
<version>4.0.0-M5</version>
1012+
<dependencies>
1013+
<!-- Explicitly declare these dependencies so the versions plugin and library bots will flag available updates. The fluido-skin plugin is referenced in src/site/site.xml using the same fluido version property. -->
1014+
<dependency>
1015+
<groupId>org.apache.maven.skins</groupId>
1016+
<artifactId>maven-fluido-skin</artifactId>
1017+
<version>${version.fluido}</version>
1018+
</dependency>
1019+
</dependencies>
10181020
</plugin>
10191021

10201022
<plugin>
10211023
<groupId>org.apache.maven.plugins</groupId>
10221024
<artifactId>maven-surefire-plugin</artifactId>
1023-
<version>3.0.0-M7</version>
1025+
<version>3.0.0-M9</version>
10241026
</plugin>
10251027

10261028
<plugin>
@@ -1041,7 +1043,7 @@
10411043
<plugin>
10421044
<groupId>org.codehaus.mojo</groupId>
10431045
<artifactId>versions-maven-plugin</artifactId>
1044-
<version>2.13.0</version>
1046+
<version>2.15.0</version>
10451047
</plugin>
10461048

10471049
<!-- SpotBugs Static Analysis - the successor to FindBugs -->
@@ -1086,7 +1088,8 @@
10861088
<plugin>
10871089
<groupId>com.diffplug.spotless</groupId>
10881090
<artifactId>spotless-maven-plugin</artifactId>
1089-
<version>2.27.2</version>
1091+
<!-- This is the last version that supports Java 8. 2.31.0+ requires Java 11. -->
1092+
<version>2.30.0</version>
10901093
<configuration>
10911094
<!-- optional: limit format enforcement to just the files changed by this feature branch -->
10921095
<ratchetFrom>origin/master</ratchetFrom>
@@ -1229,9 +1232,10 @@
12291232
<version.apacheds>1.5.7</version.apacheds>
12301233
<version.apache-shared-ldap>0.9.19</version.apache-shared-ldap>
12311234
<version.exec.maven>1.6.0</version.exec.maven>
1235+
<version.fluido>2.0.0-M3</version.fluido>
12321236
<!-- hibernate is up to rev 6+. But 4.0.0. causes this error: symbol: org.hibernate.classic.Session not found -->
12331237
<version.hibernate>3.6.10.Final</version.hibernate>
1234-
<version.spotbugs.maven>4.7.3.0</version.spotbugs.maven>
1238+
<version.spotbugs.maven>4.7.3.2</version.spotbugs.maven>
12351239
<version.spotbugs>4.7.3</version.spotbugs>
12361240
<version.springframework>4.3.30.RELEASE</version.springframework>
12371241
<!-- tomcat 8.5 is last version to support Java 7. Tomcat 9+ requires Java 8. -->

0 commit comments

Comments
 (0)