createArtifactWithNoManifest() — spring-boot Function Reference
Architecture documentation for the createArtifactWithNoManifest() function in JarTypeFilterTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD aa940055_f7ac_4ae5_c2a3_65f0a7f13def["createArtifactWithNoManifest()"] 801c5b6d_4a05_bf78_28cb_79598f4a0fec["whenArtifactHasNoManifestFileThenItIsIncluded()"] 801c5b6d_4a05_bf78_28cb_79598f4a0fec -->|calls| aa940055_f7ac_4ae5_c2a3_65f0a7f13def 5dfc12a6_7139_7458_e971_7e51fb66135f["mockArtifact()"] aa940055_f7ac_4ae5_c2a3_65f0a7f13def -->|calls| 5dfc12a6_7139_7458_e971_7e51fb66135f style aa940055_f7ac_4ae5_c2a3_65f0a7f13def fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-maven-plugin/src/test/java/org/springframework/boot/maven/JarTypeFilterTests.java lines 91–100
private Artifact createArtifactWithNoManifest() {
Path jarPath = this.temp.resolve("test.jar");
try {
new JarOutputStream(new FileOutputStream(jarPath.toFile())).close();
}
catch (IOException ex) {
throw new RuntimeException(ex);
}
return mockArtifact(jarPath);
}
Domain
Subdomains
Calls
Called By
- whenArtifactHasNoManifestFileThenItIsIncluded()
Source
Frequently Asked Questions
What does createArtifactWithNoManifest() do?
createArtifactWithNoManifest() is a function in the spring-boot codebase.
What does createArtifactWithNoManifest() call?
createArtifactWithNoManifest() calls 1 function(s): mockArtifact.
What calls createArtifactWithNoManifest()?
createArtifactWithNoManifest() is called by 1 function(s): whenArtifactHasNoManifestFileThenItIsIncluded.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free