This is an automated email from the ASF dual-hosted git repository.
bitstorm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git
The following commit(s) were added to refs/heads/master by this push:
new 51f4b388be Test with JDK 26 (#1441)
51f4b388be is described below
commit 51f4b388be27cc9104129b90fd9b5f9b3ae4f1d5
Author: Martin Grigorov <[email protected]>
AuthorDate: Fri May 1 15:28:16 2026 +0300
Test with JDK 26 (#1441)
Thanks! I was struggling with Maven profiles to add Java 26
---
.github/workflows/maven.yml | 5 +++--
pom.xml | 2 +-
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 7135d85754..0694cf968e 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -7,7 +7,7 @@ on:
branches: [ master ]
env:
- MAVEN_VERSION: 3.9.9
+ MAVEN_VERSION: 3.9.15
jobs:
build:
@@ -18,6 +18,7 @@ jobs:
java:
- '21'
- '25'
+ - '26'
steps:
- uses: actions/checkout@v6
@@ -48,5 +49,5 @@ jobs:
- name: Build with Maven
run: |
- java -version
+ java -version
./apache-maven-${MAVEN_VERSION}/bin/mvn --show-version clean verify
-Pjs-test
diff --git a/pom.xml b/pom.xml
index c954d7a86c..1d16132b02 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1474,7 +1474,7 @@
<profile>
<id>on-jdk-early-access</id>
<activation>
- <jdk>[26,)</jdk>
+ <jdk>[27,)</jdk>
</activation>
<properties>
<javadoc.jdk.apidocs.link>https://download.java.net/java/early_access/jdk${java.specification.version}/docs/api/</javadoc.jdk.apidocs.link>