We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 88c83de + 0a38f0c commit c456ca0Copy full SHA for c456ca0
plugin-gradle/src/test/java/com/diffplug/gradle/spotless/GradleIntegrationHarness.java
@@ -58,8 +58,12 @@ public enum GradleVersionSupport {
58
GradleVersionSupport(String version) {
59
String minVersionForRunningJRE;
60
switch (Jvm.version()) {
61
+ case 26:
62
+ throw new IllegalStateException("Gradle does not yet support running on Java 26. " +
63
+ "You need to update the case ref to https://docs.gradle.org/current/userguide/compatibility.html.");
64
case 25:
- // TODO: https://docs.gradle.org/current/userguide/compatibility.html
65
+ minVersionForRunningJRE = "9.1.0";
66
+ break;
67
case 24:
68
minVersionForRunningJRE = "8.14";
69
break;
0 commit comments