This is an automated email from the ASF dual-hosted git repository.
adelbene pushed a commit to branch wicket-10.x
in repository https://gitbox.apache.org/repos/asf/wicket.git
The following commit(s) were added to refs/heads/wicket-10.x by this push:
new 34d63a9843 Setting Java 21 as minimum version
34d63a9843 is described below
commit 34d63a98436d8e8cd3ef7e6aa83f2201128b0e81
Author: Andrea Del Bene <[email protected]>
AuthorDate: Sun Nov 10 22:08:42 2024 +0100
Setting Java 21 as minimum version
---
.github/workflows/maven.yml | 1 -
pom.xml | 4 ++--
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index bec2235623..20dc2cf68b 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -16,7 +16,6 @@ jobs:
strategy:
matrix:
java:
- - '17'
- '21'
- '23'
diff --git a/pom.xml b/pom.xml
index f594be5ec0..e52592614b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -136,8 +136,8 @@
<maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>
<maven.compiler.showWarnings>true</maven.compiler.showWarnings>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
+ <maven.compiler.source>21</maven.compiler.source>
+ <maven.compiler.target>21</maven.compiler.target>
<!-- Project Versions -->
<asm.version>9.7.1</asm.version>