Skip to content
Draft
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: [17, 21, 24]
jre: [17, 21, 25]
os: [ubuntu-latest, windows-latest]
include:
# npm on linux only (crazy slow on windows)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,11 @@ public enum GradleVersionSupport {
GradleVersionSupport(String version) {
String minVersionForRunningJRE;
switch (Jvm.version()) {
case 26:
throw new UnsupportedOperationException("Needs to update the minVersionForRunningJRE, see https://docs.gradle.org/current/userguide/compatibility.html");
case 25:
// TODO: https://docs.gradle.org/current/userguide/compatibility.html
minVersionForRunningJRE = "9.1.0";
break;
case 24:
minVersionForRunningJRE = "8.14";
break;
Expand Down
Loading