Merge branch '3.1.x'

Closes gh-38665
This commit is contained in:
Andy Wilkinson
2023-12-05 20:31:17 +00:00
2 changed files with 5 additions and 2 deletions

View File

@@ -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);