writeSettingsGradle() — spring-boot Function Reference
Architecture documentation for the writeSettingsGradle() function in AbstractBootArchiveIntegrationTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 1b7ab26c_1b23_854e_e55d_187dce5b4cd2["writeSettingsGradle()"] ac7f2c84_3074_d9f3_cf2a_3c3718897639["multiModuleImplicitLayers()"] ac7f2c84_3074_d9f3_cf2a_3c3718897639 -->|calls| 1b7ab26c_1b23_854e_e55d_187dce5b4cd2 bfc328c2_9a96_d1f1_d259_8f62ad8057fe["multiModuleCustomLayers()"] bfc328c2_9a96_d1f1_d259_8f62ad8057fe -->|calls| 1b7ab26c_1b23_854e_e55d_187dce5b4cd2 style 1b7ab26c_1b23_854e_e55d_187dce5b4cd2 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/tasks/bundling/AbstractBootArchiveIntegrationTests.java lines 690–701
private void writeSettingsGradle() {
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);
}
}
Domain
Subdomains
Source
Frequently Asked Questions
What does writeSettingsGradle() do?
writeSettingsGradle() is a function in the spring-boot codebase.
What calls writeSettingsGradle()?
writeSettingsGradle() is called by 2 function(s): multiModuleCustomLayers, multiModuleImplicitLayers.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free