Skip to content

Commit 8966b13

Browse files
committed
Merge branch '2.5.x'
Closes gh-27733
2 parents 79be076 + b4f0f29 commit 8966b13

File tree

1 file changed

+4
-4
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
-4
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 & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@ private GradleVersions() {
3535

3636
public static List<String> allCompatible() {
3737
if (isJava17()) {
38-
return Collections.singletonList("7.2-rc-3");
38+
return Collections.singletonList("7.2");
3939
}
4040
if (isJava16()) {
41-
return Arrays.asList("7.0.2", "7.1", "7.2-rc-3");
41+
return Arrays.asList("7.0.2", "7.1", "7.2");
4242
}
43-
return Arrays.asList("6.8.3", GradleVersion.current().getVersion(), "7.0.2", "7.1.1", "7.2-rc-3");
43+
return Arrays.asList("6.8.3", GradleVersion.current().getVersion(), "7.0.2", "7.1.1", "7.2");
4444
}
4545

4646
public static String currentOrMinimumCompatible() {
4747
if (isJava17()) {
48-
return "7.2-rc-3";
48+
return "7.2";
4949
}
5050
if (isJava16()) {
5151
return "7.0.2";

0 commit comments

Comments
 (0)