whenIncludeToolsIsFalseThenToolsAreNotAddedToTheJar() — spring-boot Function Reference
Architecture documentation for the whenIncludeToolsIsFalseThenToolsAreNotAddedToTheJar() function in AbstractBootArchiveTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD ac010856_f1f2_7490_3233_ba2324e6088e["whenIncludeToolsIsFalseThenToolsAreNotAddedToTheJar()"] 6735338a_2770_d6bf_59a2_0a9fa6f0b3fc["executeTask()"] ac010856_f1f2_7490_3233_ba2324e6088e -->|calls| 6735338a_2770_d6bf_59a2_0a9fa6f0b3fc 5645c4d4_f43b_2768_d537_d5683623dc04["getEntryNames()"] ac010856_f1f2_7490_3233_ba2324e6088e -->|calls| 5645c4d4_f43b_2768_d537_d5683623dc04 style ac010856_f1f2_7490_3233_ba2324e6088e 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/AbstractBootArchiveTests.java lines 586–593
@Test
void whenIncludeToolsIsFalseThenToolsAreNotAddedToTheJar() throws IOException {
this.task.getIncludeTools().set(false);
this.task.getMainClass().set("com.example.Main");
executeTask();
List<String> entryNames = getEntryNames(this.task.getArchiveFile().get().getAsFile());
assertThat(entryNames).isNotEmpty().doesNotContain(this.libPath + JarModeLibrary.TOOLS.getName());
}
Domain
Subdomains
Source
Frequently Asked Questions
What does whenIncludeToolsIsFalseThenToolsAreNotAddedToTheJar() do?
whenIncludeToolsIsFalseThenToolsAreNotAddedToTheJar() is a function in the spring-boot codebase.
What does whenIncludeToolsIsFalseThenToolsAreNotAddedToTheJar() call?
whenIncludeToolsIsFalseThenToolsAreNotAddedToTheJar() calls 2 function(s): executeTask, getEntryNames.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free