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.
1 parent a719690 commit 2c03111Copy full SHA for 2c03111
plugin-gradle/src/test/java/com/diffplug/gradle/spotless/GradleIntegrationHarness.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright 2016-2022 DiffPlug
+ * Copyright 2016-2023 DiffPlug
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -53,9 +53,12 @@ public enum GradleVersionSupport {
53
GradleVersionSupport(String version) {
54
String minVersionForRunningJRE;
55
switch (Jvm.version()) {
56
+ case 21:
57
case 20:
- case 19:
58
// TODO: https://docs.gradle.org/current/userguide/compatibility.html
59
+ case 19:
60
+ minVersionForRunningJRE = "7.6";
61
+ break;
62
case 18:
63
minVersionForRunningJRE = "7.5";
64
break;
0 commit comments