mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-24 02:09:05 +00:00
Merge branch '3.1.x'
Closes gh-38665
This commit is contained in:
+3
@@ -650,6 +650,9 @@ abstract class AbstractBootArchiveIntegrationTests {
|
||||
try (PrintWriter writer = new PrintWriter(
|
||||
new FileWriter(new File(this.gradleBuild.getProjectDir(), "settings.gradle")))) {
|
||||
writer.println("include 'alpha', 'bravo', 'charlie'");
|
||||
new File(this.gradleBuild.getProjectDir(), "alpha").mkdirs();
|
||||
new File(this.gradleBuild.getProjectDir(), "bravo").mkdirs();
|
||||
new File(this.gradleBuild.getProjectDir(), "charlie").mkdirs();
|
||||
}
|
||||
catch (IOException ex) {
|
||||
throw new RuntimeException(ex);
|
||||
|
||||
+2
-2
@@ -35,9 +35,9 @@ public final class GradleVersions {
|
||||
@SuppressWarnings("UnstableApiUsage")
|
||||
public static List<String> allCompatible() {
|
||||
if (isJavaVersion(JavaVersion.VERSION_20)) {
|
||||
return Arrays.asList("8.1.1", "8.3", "8.4");
|
||||
return Arrays.asList("8.1.1", "8.5");
|
||||
}
|
||||
return Arrays.asList("7.5.1", GradleVersion.current().getVersion(), "8.0.2", "8.3", "8.4");
|
||||
return Arrays.asList("7.5.1", GradleVersion.current().getVersion(), "8.0.2", "8.5");
|
||||
}
|
||||
|
||||
public static String minimumCompatible() {
|
||||
|
||||
Reference in New Issue
Block a user