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-addons.git
The following commit(s) were added to refs/heads/main by this push:
new 0f8cf7c OPENNLP-1795: Move to Apache Parent 36 (#125)
0f8cf7c is described below
commit 0f8cf7c6893777589b9ab288d55e8b03322b6c32
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Jan 12 12:24:56 2026 +0100
OPENNLP-1795: Move to Apache Parent 36 (#125)
* Bump org.apache:apache from 35 to 36
Bumps [org.apache:apache](https://github.com/apache/maven-apache-parent)
from 35 to 36.
- [Release notes](https://github.com/apache/maven-apache-parent/releases)
- [Commits](https://github.com/apache/maven-apache-parent/commits)
---
updated-dependencies:
- dependency-name: org.apache:apache
dependency-version: '36'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected]>
* Adapts configuration of maven-javadoc-plugin to use <release> instead of
<source> to set Java version
---------
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Martin Wiesner <[email protected]>
---
geoentitylinker-addon/pom.xml | 6 ------
pom.xml | 4 ++--
2 files changed, 2 insertions(+), 8 deletions(-)
diff --git a/geoentitylinker-addon/pom.xml b/geoentitylinker-addon/pom.xml
index 32381b1..b43492b 100644
--- a/geoentitylinker-addon/pom.xml
+++ b/geoentitylinker-addon/pom.xml
@@ -29,7 +29,6 @@
</parent>
<artifactId>geoentitylinker-addon</artifactId>
- <version>2.5.8-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Apache OpenNLP GeoentityLinker Addon</name>
@@ -85,11 +84,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>${maven.compiler.source}</source>
- <target>${maven.compiler.target}</target>
- <compilerArgument>-Xlint</compilerArgument>
- </configuration>
</plugin>
</plugins>
</build>
diff --git a/pom.xml b/pom.xml
index 11acc6b..080891c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
- <version>35</version>
+ <version>36</version>
<relativePath />
</parent>
@@ -384,7 +384,7 @@
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<doclint>none</doclint>
- <source>${java.version}</source>
+ <release>${java.version}</release>
<sourcepath>src/main/java</sourcepath>
</configuration>
<executions>