devtoolsJarIsExcludedByDefault() — spring-boot Function Reference
Architecture documentation for the devtoolsJarIsExcludedByDefault() function in AbstractBootArchiveTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 8dcff342_5784_da71_42b4_17d716ec6693["devtoolsJarIsExcludedByDefault()"] d6707113_61d0_541a_226a_16c5623dd55c["newFile()"] 8dcff342_5784_da71_42b4_17d716ec6693 -->|calls| d6707113_61d0_541a_226a_16c5623dd55c 6735338a_2770_d6bf_59a2_0a9fa6f0b3fc["executeTask()"] 8dcff342_5784_da71_42b4_17d716ec6693 -->|calls| 6735338a_2770_d6bf_59a2_0a9fa6f0b3fc style 8dcff342_5784_da71_42b4_17d716ec6693 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 398–407
@Test
void devtoolsJarIsExcludedByDefault() throws IOException {
this.task.getMainClass().set("com.example.Main");
this.task.classpath(newFile("spring-boot-devtools-0.1.2.jar"));
executeTask();
assertThat(this.task.getArchiveFile().get().getAsFile()).exists();
try (JarFile jarFile = new JarFile(this.task.getArchiveFile().get().getAsFile())) {
assertThat(jarFile.getEntry(this.libPath + "spring-boot-devtools-0.1.2.jar")).isNull();
}
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does devtoolsJarIsExcludedByDefault() do?
devtoolsJarIsExcludedByDefault() is a function in the spring-boot codebase.
What does devtoolsJarIsExcludedByDefault() call?
devtoolsJarIsExcludedByDefault() calls 2 function(s): executeTask, newFile.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free