parent
3f29c7f84f
commit
b424254587
|
@ -605,6 +605,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);
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue