Skip to content

Commit 4606e17

Browse files
committed
Merge branch '2.5.x' into 2.6.x
Closes gh-28891
2 parents b6135ce + af60a8a commit 4606e17

File tree

1 file changed

+3
-3
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

+3
-3
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ private GradleVersions() {
3434

3535
public static List<String> allCompatible() {
3636
if (isJava17()) {
37-
return Arrays.asList("7.2", "7.3");
37+
return Arrays.asList("7.2", "7.3.1");
3838
}
3939
if (isJava16()) {
40-
return Arrays.asList("7.0.2", "7.1", "7.2", "7.3");
40+
return Arrays.asList("7.0.2", "7.1", "7.2", "7.3.1");
4141
}
42-
return Arrays.asList("6.8.3", GradleVersion.current().getVersion(), "7.0.2", "7.1.1", "7.2", "7.3");
42+
return Arrays.asList("6.8.3", GradleVersion.current().getVersion(), "7.0.2", "7.1.1", "7.2", "7.3.1");
4343
}
4444

4545
public static String currentOrMinimumCompatible() {

0 commit comments

Comments
 (0)