Skip to content

Commit 32723df

Browse files
committed
Update plugins, remove deprecated access-warn flag
1 parent 45c8cc7 commit 32723df

File tree

1 file changed

+17
-18
lines changed

1 file changed

+17
-18
lines changed

pom.xml

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -919,22 +919,22 @@ The 2.15 doesn't report any breaking changes so its backwards compatible with 2.
919919
<plugin>
920920
<groupId>org.apache.maven.plugins</groupId>
921921
<artifactId>maven-compiler-plugin</artifactId>
922-
<version>3.8.1</version>
922+
<version>3.13.0</version>
923923
<configuration>
924924
<source>${jdk.version}</source>
925925
<target>${jdk.version}</target>
926926
</configuration>
927927
</plugin>
928928
<plugin>
929929
<artifactId>maven-war-plugin</artifactId>
930-
<version>3.3.1</version>
930+
<version>3.4.0</version>
931931
<configuration>
932932
<failOnMissingWebXml>false</failOnMissingWebXml>
933933
</configuration>
934934
</plugin>
935935
<plugin>
936936
<artifactId>maven-source-plugin</artifactId>
937-
<version>3.2.1</version>
937+
<version>3.3.1</version>
938938
<executions>
939939
<execution>
940940
<id>attach-sources</id>
@@ -947,7 +947,7 @@ The 2.15 doesn't report any breaking changes so its backwards compatible with 2.
947947
</plugin>
948948
<plugin>
949949
<artifactId>maven-javadoc-plugin</artifactId>
950-
<version>3.2.0</version>
950+
<version>3.11.2</version>
951951
<configuration>
952952
<failOnError>false</failOnError>
953953
</configuration>
@@ -963,15 +963,15 @@ The 2.15 doesn't report any breaking changes so its backwards compatible with 2.
963963
</plugin>
964964
<plugin>
965965
<artifactId>maven-install-plugin</artifactId>
966-
<version>2.5.2</version>
966+
<version>3.1.3</version>
967967
</plugin>
968968
<plugin>
969969
<artifactId>maven-resources-plugin</artifactId>
970-
<version>3.2.0</version>
970+
<version>3.3.1</version>
971971
</plugin>
972972
<plugin>
973973
<artifactId>maven-surefire-plugin</artifactId>
974-
<version>2.22.1</version>
974+
<version>3.5.2</version>
975975
<configuration>
976976
<!-- module.build.config is a workaround for test/mock libraries on Java 11 -->
977977
<!-- headless=true prevents forking java process from stealing window focus on Mac OS -->
@@ -985,15 +985,15 @@ The 2.15 doesn't report any breaking changes so its backwards compatible with 2.
985985
<plugin>
986986
<groupId>org.apache.maven.plugins</groupId>
987987
<artifactId>maven-failsafe-plugin</artifactId>
988-
<version>2.22.1</version>
988+
<version>3.5.2</version>
989989
<configuration>
990990
<!-- Workaround for test/mock libraries -->
991991
<argLine>--add-opens java.base/java.lang=ALL-UNNAMED --illegal-access=permit</argLine>
992992
</configuration>
993993
</plugin>
994994
<plugin>
995995
<artifactId>maven-jar-plugin</artifactId>
996-
<version>3.2.0</version>
996+
<version>3.4.2</version>
997997
<configuration>
998998
<archive>
999999
<manifest>
@@ -1013,7 +1013,7 @@ The 2.15 doesn't report any breaking changes so its backwards compatible with 2.
10131013
<plugin>
10141014
<!-- explicitly define maven-deploy-plugin after other to force exec order -->
10151015
<artifactId>maven-deploy-plugin</artifactId>
1016-
<version>2.8.2</version>
1016+
<version>3.1.3</version>
10171017
<executions>
10181018
<execution>
10191019
<id>deploy</id>
@@ -1026,9 +1026,9 @@ The 2.15 doesn't report any breaking changes so its backwards compatible with 2.
10261026
</plugin>
10271027
<!-- initialize git revision info -->
10281028
<plugin>
1029-
<groupId>pl.project13.maven</groupId>
1030-
<artifactId>git-commit-id-plugin</artifactId>
1031-
<version>4.0.2</version>
1029+
<groupId>io.github.git-commit-id</groupId>
1030+
<artifactId>git-commit-id-maven-plugin</artifactId>
1031+
<version>9.0.1</version>
10321032
<executions>
10331033
<execution>
10341034
<goals>
@@ -1047,7 +1047,7 @@ The 2.15 doesn't report any breaking changes so its backwards compatible with 2.
10471047
<plugin>
10481048
<groupId>com.github.spotbugs</groupId>
10491049
<artifactId>spotbugs-maven-plugin</artifactId>
1050-
<version>4.8.3.1</version>
1050+
<version>4.8.6.6</version>
10511051
<configuration>
10521052
<excludeFilterFile>spotbugs__ignore_filter.xml</excludeFilterFile>
10531053
</configuration>
@@ -1072,7 +1072,7 @@ The 2.15 doesn't report any breaking changes so its backwards compatible with 2.
10721072
<plugin>
10731073
<groupId>org.cyclonedx</groupId>
10741074
<artifactId>cyclonedx-maven-plugin</artifactId>
1075-
<version>2.7.11</version>
1075+
<version>2.9.1</version>
10761076
<configuration>
10771077
<projectType>library</projectType>
10781078
<schemaVersion>1.4</schemaVersion>
@@ -1151,9 +1151,9 @@ The 2.15 doesn't report any breaking changes so its backwards compatible with 2.
11511151
<profiles>
11521152
<profile>
11531153
<id>javamodules</id>
1154-
<!-- required for build/mock libraries to work on Java 11 -->
1154+
<!-- required for build/mock libraries to work on Java 17 -->
11551155
<activation>
1156-
<jdk>[9,)</jdk>
1156+
<jdk>[17,)</jdk>
11571157
</activation>
11581158
<properties>
11591159
<module.build.config>
@@ -1165,7 +1165,6 @@ The 2.15 doesn't report any breaking changes so its backwards compatible with 2.
11651165
--add-opens java.base/java.io=ALL-UNNAMED
11661166
--add-opens java.base/jdk.internal.loader=ALL-UNNAMED
11671167
--add-opens java.xml/jdk.xml.internal=ALL-UNNAMED
1168-
--illegal-access=warn
11691168
</module.build.config>
11701169
</properties>
11711170
</profile>

0 commit comments

Comments
 (0)