This is an automated email from the ASF dual-hosted git repository.
mawiesne pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/opennlp.git
The following commit(s) were added to refs/heads/main by this push:
new 01e9b945 OPENNLP-1630 Move to Apache Parent 33 (#668)
01e9b945 is described below
commit 01e9b94537888b090f74c741556600f881116dcd
Author: Martin Wiesner <[email protected]>
AuthorDate: Thu Oct 24 11:24:47 2024 +0200
OPENNLP-1630 Move to Apache Parent 33 (#668)
* OPENNLP-1630 Move to Apache Parent 33
- aligns version of Apache parent project to '33', details:
https://github.com/apache/maven-apache-parent/releases/tag/apache-33
* Explicitly declare project release/target version
* OPENNLP-1630 Move to Apache Parent 33
- 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 version 3.5.1
---------
Co-authored-by: Richard Zowalla <[email protected]>
---
opennlp-tools-models/pom.xml | 1 -
opennlp-tools/pom.xml | 1 -
pom.xml | 26 ++++++++++----------------
3 files changed, 10 insertions(+), 18 deletions(-)
diff --git a/opennlp-tools-models/pom.xml b/opennlp-tools-models/pom.xml
index 409e7852..99f52d90 100644
--- a/opennlp-tools-models/pom.xml
+++ b/opennlp-tools-models/pom.xml
@@ -89,7 +89,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
- <version>${maven.surefire.plugin}</version>
<configuration>
<forkCount>${opennlp.forkCount}</forkCount>
<useSystemClassLoader>false</useSystemClassLoader>
diff --git a/opennlp-tools/pom.xml b/opennlp-tools/pom.xml
index fa96fd4a..7222229b 100644
--- a/opennlp-tools/pom.xml
+++ b/opennlp-tools/pom.xml
@@ -120,7 +120,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
- <version>${maven.surefire.plugin}</version>
<configuration>
<argLine>-Xmx2048m -Dorg.slf4j.simpleLogger.defaultLogLevel=off
-javaagent:${settings.localRepository}/com/ginsberg/junit5-system-exit/${junit5-system-exit.version}/junit5-system-exit-${junit5-system-exit.version}.jar</argLine>
<forkCount>${opennlp.forkCount}</forkCount>
diff --git a/pom.xml b/pom.xml
index 9669332b..4323ff7e 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>
@@ -40,7 +40,7 @@
<connection>scm:git:https://github.com/apache/opennlp.git</connection>
<developerConnection>scm:git:[email protected]:apache/opennlp.git</developerConnection>
<url>https://github.com/apache/opennlp.git</url>
- <tag>opennlp-2.3.1</tag>
+ <tag>opennlp-2.4.0</tag>
</scm>
<repositories>
@@ -60,7 +60,7 @@
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
<post>[email protected]</post>
-
<archive>http://mail-archives.apache.org/mod_mbox/opennlp-users/</archive>
+
<archive>https://mail-archives.apache.org/mod_mbox/opennlp-users/</archive>
</mailingList>
<mailingList>
@@ -68,21 +68,21 @@
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
<post>[email protected]</post>
-
<archive>http://mail-archives.apache.org/mod_mbox/opennlp-dev/</archive>
+
<archive>https://mail-archives.apache.org/mod_mbox/opennlp-dev/</archive>
</mailingList>
<mailingList>
<name>Apache OpenNLP Commits</name>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
-
<archive>http://mail-archives.apache.org/mod_mbox/opennlp-commits/</archive>
+
<archive>https://mail-archives.apache.org/mod_mbox/opennlp-commits/</archive>
</mailingList>
<mailingList>
<name>Apache OpenNLP Issues</name>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
-
<archive>http://mail-archives.apache.org/mod_mbox/opennlp-issues/</archive>
+
<archive>https://mail-archives.apache.org/mod_mbox/opennlp-issues/</archive>
</mailingList>
</mailingLists>
@@ -165,14 +165,15 @@
<properties>
<!-- Build Properties -->
<java.version>17</java.version>
+ <maven.compiler.release>${java.version}</maven.compiler.release>
+ <maven.compiler.target>${java.version}</maven.compiler.target>
<maven.version>3.3.9</maven.version>
- <enforcer.plugin.version>3.3.0</enforcer.plugin.version>
<jackson.version>2.18.0</jackson.version>
<jersey.version>3.1.9</jersey.version>
<junit.version>5.11.2</junit.version>
+ <junit5-system-exit.version>2.0.0</junit5-system-exit.version>
<uimaj.version>3.5.0</uimaj.version>
<morfologik.version>2.1.9</morfologik.version>
- <checkstyle.plugin.version>3.2.0</checkstyle.plugin.version>
<onnxruntime.version>1.19.2</onnxruntime.version>
<slf4j.version>2.0.16</slf4j.version>
<log4j2.version>2.23.1</log4j2.version>
@@ -180,11 +181,9 @@
<classgraph.version>4.8.176</classgraph.version>
<opennlp.models.version>1.0.1</opennlp.models.version>
<opennlp.forkCount>1.0C</opennlp.forkCount>
- <junit5-system-exit.version>2.0.0</junit5-system-exit.version>
<coveralls.maven.plugin>4.3.0</coveralls.maven.plugin>
<jacoco.maven.plugin>0.8.12</jacoco.maven.plugin>
- <maven.surefire.plugin>3.2.2</maven.surefire.plugin>
- <maven.failsafe.plugin>3.2.2</maven.failsafe.plugin>
+ <maven.failsafe.plugin>3.5.1</maven.failsafe.plugin>
<forbiddenapis.plugin>3.8</forbiddenapis.plugin>
</properties>
@@ -217,7 +216,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
-
<version>${checkstyle.plugin.version}</version>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
@@ -288,7 +286,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
-
<version>${maven.surefire.plugin}</version>
<configuration>
<argLine>-Xmx2048m
-Dorg.slf4j.simpleLogger.defaultLogLevel=off</argLine>
<forkCount>${opennlp.forkCount}</forkCount>
@@ -416,7 +413,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
- <version>${enforcer.plugin.version}</version>
<executions>
<execution>
<id>enforce-java</id>
@@ -509,7 +505,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
-
<version>${maven.surefire.plugin}</version>
<configuration>
<argLine>-Xmx4g</argLine>
<includes>
@@ -533,7 +528,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
-
<version>${maven.surefire.plugin}</version>
<configuration>
<argLine>-Xmx20g</argLine>
<includes>