This is an automated email from the ASF dual-hosted git repository.
mawiesne pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/opennlp-addons.git
The following commit(s) were added to refs/heads/master by this push:
new 799fccc OPENNLP-1630 Move to Apache Parent 33 (#34)
799fccc is described below
commit 799fccca1fd76e0476cab1cd1e93575a28e8b7c3
Author: Martin Wiesner <[email protected]>
AuthorDate: Tue Oct 22 12:41:19 2024 +0200
OPENNLP-1630 Move to Apache Parent 33 (#34)
- aligns version of Apache parent project to '33', details:
https://github.com/apache/maven-apache-parent/releases/tag/apache-33
- drops outdated, custom-managed maven plugin versions (now via parent)
- updates maven.failsafe plugin to 3.5.1
- updates maven.assembly plugin to 3.6.0
---
pom.xml | 15 ++++-----------
1 file changed, 4 insertions(+), 11 deletions(-)
diff --git a/pom.xml b/pom.xml
index 07db8f4..c01bfd6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@
<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
- <version>31</version>
+ <version>33</version>
<relativePath />
</parent>
@@ -116,12 +116,9 @@
<junit.version>5.11.2</junit.version>
- <enforcer.plugin.version>3.0.0-M3</enforcer.plugin.version>
- <checkstyle.plugin.version>3.2.0</checkstyle.plugin.version>
<coveralls.maven.plugin>4.3.0</coveralls.maven.plugin>
<jacoco.maven.plugin>0.8.12</jacoco.maven.plugin>
- <maven.surefire.plugin>3.0.0-M5</maven.surefire.plugin>
- <maven.failsafe.plugin>3.0.0-M5</maven.failsafe.plugin>
+ <maven.failsafe.plugin>3.5.0</maven.failsafe.plugin>
<mockito.version>3.9.0</mockito.version>
</properties>
@@ -242,7 +239,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
- <version>3.2.0</version>
+ <version>3.6.0</version>
</plugin>
<plugin>
@@ -319,7 +316,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
- <version>${maven.surefire.plugin}</version>
<configuration>
<argLine>-Xmx2048m -Dfile.encoding=UTF-8</argLine>
<forkCount>${opennlp.forkCount}</forkCount>
@@ -384,7 +380,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <version>3.10.1</version>
+ <version>3.13.0</version>
<configuration>
<release>${java.version}</release>
<compilerArgument>-Xlint</compilerArgument>
@@ -422,7 +418,6 @@
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>3.5.0</version>
<configuration>
<doclint>none</doclint>
<source>${java.version}</source>
@@ -470,7 +465,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
- <version>${enforcer.plugin.version}</version>
<executions>
<execution>
<id>enforce-java</id>
@@ -506,7 +500,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
- <version>${checkstyle.plugin.version}</version>
</plugin>
</plugins>
</build>