Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,12 @@ public enum GradleVersionSupport {
GradleVersionSupport(String version) {
String minVersionForRunningJRE;
switch (Jvm.version()) {
case 26:
throw new IllegalStateException("Gradle does not yet support running on Java 26. " +
"You need to update the case ref to 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