File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
plugin-gradle/src/test/java/com/diffplug/gradle/spotless Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 43
43
matrix :
44
44
kind : [maven, gradle]
45
45
# Test on the latest Java version once Gradle & Maven support it.
46
- jre : [11, 17, 21]
46
+ jre : [11, 17, 21, 22 ]
47
47
os : [ubuntu-latest]
48
48
include :
49
49
# test windows at the diagonals of the above matrix
Original file line number Diff line number Diff line change @@ -54,8 +54,11 @@ public enum GradleVersionSupport {
54
54
GradleVersionSupport (String version ) {
55
55
String minVersionForRunningJRE ;
56
56
switch (Jvm .version ()) {
57
- case 22 :
57
+ case 23 :
58
58
// TODO: https://docs.gradle.org/current/userguide/compatibility.html
59
+ case 22 :
60
+ minVersionForRunningJRE = "8.8" ;
61
+ break ;
59
62
case 21 :
60
63
minVersionForRunningJRE = "8.5" ;
61
64
break ;
You can’t perform that action at this time.
0 commit comments