Skip to content

Commit 8c47089

Browse files
committed
Test our Gradle plugin against 7.5
Closes gh-31753
1 parent 50aa92e commit 8c47089

File tree

1 file changed

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

+5
-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: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,16 @@ private GradleVersions() {
3434

3535
public static List<String> allCompatible() {
3636
if (isJava18()) {
37-
return Arrays.asList("7.3.3", "7.4.2");
37+
return Arrays.asList("7.3.3", "7.4.2", "7.5");
3838
}
3939
if (isJava17()) {
40-
return Arrays.asList("7.2", "7.3.3", "7.4.2");
40+
return Arrays.asList("7.2", "7.3.3", "7.4.2", "7.5");
4141
}
4242
if (isJava16()) {
43-
return Arrays.asList("7.0.2", "7.1", "7.2", "7.3.3", "7.4.2");
43+
return Arrays.asList("7.0.2", "7.1", "7.2", "7.3.3", "7.4.2", "7.5");
4444
}
45-
return Arrays.asList("6.8.3", GradleVersion.current().getVersion(), "7.0.2", "7.1.1", "7.2", "7.3.3", "7.4.2");
45+
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");
4647
}
4748

4849
public static String currentOrMinimumCompatible() {

0 commit comments

Comments
 (0)