Skip to content

Commit c9e69f5

Browse files
committed
Test our Gradle plugin against Gradle 7.5.1
Closes gh-32058
1 parent 64a3276 commit c9e69f5

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
@@ -34,16 +34,16 @@ private GradleVersions() {
3434

3535
public static List<String> allCompatible() {
3636
if (isJava18()) {
37-
return Arrays.asList("7.3.3", "7.4.2", "7.5");
37+
return Arrays.asList("7.3.3", "7.4.2", "7.5.1");
3838
}
3939
if (isJava17()) {
40-
return Arrays.asList("7.2", "7.3.3", "7.4.2", "7.5");
40+
return Arrays.asList("7.2", "7.3.3", "7.4.2", "7.5.1");
4141
}
4242
if (isJava16()) {
43-
return Arrays.asList("7.0.2", "7.1", "7.2", "7.3.3", "7.4.2", "7.5");
43+
return Arrays.asList("7.0.2", "7.1", "7.2", "7.3.3", "7.4.2", "7.5.1");
4444
}
4545
return Arrays.asList("6.8.3", GradleVersion.current().getVersion(), "7.0.2", "7.1.1", "7.2", "7.3.3", "7.4.2",
46-
"7.5");
46+
"7.5.1");
4747
}
4848

4949
public static String currentOrMinimumCompatible() {

0 commit comments

Comments
 (0)