excludeClassifierNoMatch() — spring-boot Function Reference
Architecture documentation for the excludeClassifierNoMatch() function in ExcludeFilterTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 6750d24c_1516_7ff2_c539_3d58259dbfdf["excludeClassifierNoMatch()"] 256a2b93_8ab2_0a7a_1f05_de8600c14656["createExclude()"] 6750d24c_1516_7ff2_c539_3d58259dbfdf -->|calls| 256a2b93_8ab2_0a7a_1f05_de8600c14656 1091ed89_8586_c2fa_3bac_aadb7151adea["createArtifact()"] 6750d24c_1516_7ff2_c539_3d58259dbfdf -->|calls| 1091ed89_8586_c2fa_3bac_aadb7151adea style 6750d24c_1516_7ff2_c539_3d58259dbfdf fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-maven-plugin/src/test/java/org/springframework/boot/maven/ExcludeFilterTests.java lines 83–90
@Test
void excludeClassifierNoMatch() throws ArtifactFilterException {
ExcludeFilter filter = new ExcludeFilter(Arrays.asList(createExclude("com.foo", "bar", "jdk5")));
Artifact artifact = createArtifact("com.foo", "bar", "jdk6");
Set result = filter.filter(Collections.singleton(artifact));
assertThat(result).hasSize(1);
assertThat(result.iterator().next()).isSameAs(artifact);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does excludeClassifierNoMatch() do?
excludeClassifierNoMatch() is a function in the spring-boot codebase.
What does excludeClassifierNoMatch() call?
excludeClassifierNoMatch() calls 2 function(s): createArtifact, createExclude.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free