Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
matrix:
kind: [maven, gradle]
# Test on the latest Java version once Gradle & Maven support it.
jre: [11, 17, 21, 22]
jre: [11, 17, 21, 23]
os: [ubuntu-latest]
include:
# test windows at the diagonals of the above matrix
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,11 @@ public enum GradleVersionSupport {
GradleVersionSupport(String version) {
String minVersionForRunningJRE;
switch (Jvm.version()) {
case 23:
case 24:
// TODO: https://docs.gradle.org/current/userguide/compatibility.html
case 23:
minVersionForRunningJRE = "8.10";
break;
case 22:
minVersionForRunningJRE = "8.8";
break;
Expand Down
Loading