shouldAddToolsToTheJar() — spring-boot Function Reference
Architecture documentation for the shouldAddToolsToTheJar() function in AbstractBootArchiveTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD aaa56488_2ec1_8b7e_beec_11136c1e5370["shouldAddToolsToTheJar()"] 6735338a_2770_d6bf_59a2_0a9fa6f0b3fc["executeTask()"] aaa56488_2ec1_8b7e_beec_11136c1e5370 -->|calls| 6735338a_2770_d6bf_59a2_0a9fa6f0b3fc 5645c4d4_f43b_2768_d537_d5683623dc04["getEntryNames()"] aaa56488_2ec1_8b7e_beec_11136c1e5370 -->|calls| 5645c4d4_f43b_2768_d537_d5683623dc04 style aaa56488_2ec1_8b7e_beec_11136c1e5370 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 578–584
@Test
void shouldAddToolsToTheJar() throws IOException {
this.task.getMainClass().set("com.example.Main");
executeTask();
List<String> entryNames = getEntryNames(this.task.getArchiveFile().get().getAsFile());
assertThat(entryNames).isNotEmpty().contains(this.libPath + JarModeLibrary.TOOLS.getName());
}
Domain
Subdomains
Source
Frequently Asked Questions
What does shouldAddToolsToTheJar() do?
shouldAddToolsToTheJar() is a function in the spring-boot codebase.
What does shouldAddToolsToTheJar() call?
shouldAddToolsToTheJar() 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