Skip to content

Commit 5a1abb7

Browse files
committed
Test the Gradle plugin against Gradle 8.4
Closes gh-37811
1 parent 952ce12 commit 5a1abb7

File tree

1 file changed

+4
-5
lines changed
  • spring-boot-project/spring-boot-tools/spring-boot-gradle-test-support/src/main/java/org/springframework/boot/testsupport/gradle/testkit

1 file changed

+4
-5
lines changed

spring-boot-project/spring-boot-tools/spring-boot-gradle-test-support/src/main/java/org/springframework/boot/testsupport/gradle/testkit/GradleVersions.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,15 @@ private GradleVersions() {
3434

3535
public static List<String> allCompatible() {
3636
if (isJava18()) {
37-
return Arrays.asList("7.3.3", GradleVersion.current().getVersion(), "8.0.2", "8.3", "8.4-rc-1");
37+
return Arrays.asList("7.3.3", GradleVersion.current().getVersion(), "8.0.2", "8.3", "8.4");
3838
}
3939
if (isJava17()) {
40-
return Arrays.asList("7.2", GradleVersion.current().getVersion(), "8.0.2", "8.3", "8.4-rc-1");
40+
return Arrays.asList("7.2", GradleVersion.current().getVersion(), "8.0.2", "8.3", "8.4");
4141
}
4242
if (isJava16()) {
43-
return Arrays.asList("7.0.2", GradleVersion.current().getVersion(), "8.0.2", "8.3", "8.4-rc-1");
43+
return Arrays.asList("7.0.2", GradleVersion.current().getVersion(), "8.0.2", "8.3", "8.4");
4444
}
45-
return Arrays.asList("6.8.3", "6.9.4", "7.0.2", GradleVersion.current().getVersion(), "8.0.2", "8.3",
46-
"8.4-rc-1");
45+
return Arrays.asList("6.8.3", "6.9.4", "7.0.2", GradleVersion.current().getVersion(), "8.0.2", "8.3", "8.4");
4746
}
4847

4948
public static String minimumCompatible() {

0 commit comments

Comments
 (0)