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-wss4j.git
The following commit(s) were added to refs/heads/master by this push:
new efd908c32 Fixing build info
efd908c32 is described below
commit efd908c32c967ad843a27236f73fbf354b5708c3
Author: Colm O hEigeartaigh <[email protected]>
AuthorDate: Thu Jan 15 13:54:57 2026 +0000
Fixing build info
---
pom.xml | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/pom.xml b/pom.xml
index e898f0629..411723e7c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -105,8 +105,8 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <targetJdk>17</targetJdk>
- <maven.compiler.target>17</maven.compiler.target>
+ <javaVersion>17</javaVersion>
+ <maven.compiler.target>${javaVersion}</maven.compiler.target>
<buildtools.dir>${basedir}/build-tools</buildtools.dir>
<maven-owasp-plugin-version>12.2.0</maven-owasp-plugin-version>
<project.build.outputTimestamp>2025-10-28T15:06:04Z</project.build.outputTimestamp>
@@ -140,8 +140,7 @@
<linkXRef>false</linkXRef>
<verbose>true</verbose>
<includeTests>false</includeTests>
- <!-- TODO <targetJdk>${targetJdk}</targetJdk>-->
- <targetJdk>1.8</targetJdk>
+ <targetJdk>${javaVersion}</targetJdk>
<excludeRoots>
<excludeRoot>${basedir}/src/main/generated</excludeRoot>
</excludeRoots>
@@ -212,8 +211,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.1</version>
<configuration>
- <source>${targetJdk}</source>
- <target>${targetJdk}</target>
+ <source>${javaVersion}</source>
+ <target>${javaVersion}</target>
<compilerArgs>
<arg>-XDcompilePolicy=simple</arg>
</compilerArgs>