This is an automated email from the ASF dual-hosted git repository.
coheigea pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ws-neethi.git
The following commit(s) were added to refs/heads/master by this push:
new 3c27d0e Fixing build with JDK8
3c27d0e is described below
commit 3c27d0e8ff54c6d64b5a8a044550dbd58652618d
Author: Colm O hEigeartaigh <[email protected]>
AuthorDate: Tue Oct 21 08:27:01 2025 +0100
Fixing build with JDK8
---
pom.xml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/pom.xml b/pom.xml
index dcf6233..cb9add6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -132,8 +132,8 @@
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
- <source>1.8</source>
- <target>1.8</target>
+ <source>${maven.compiler.release}</source>
+ <target>${maven.compiler.release}</target>
</configuration>
</plugin>
<plugin>
@@ -363,6 +363,7 @@
</distributionManagement>
<properties>
<axiom.version>1.3.0</axiom.version>
+ <maven.compiler.release>8</maven.compiler.release>
<neethi.osgi.version>${project.version}</neethi.osgi.version>
<failIfNoTests>false</failIfNoTests>
</properties>