excludeArtifactIdNoMatch() — spring-boot Function Reference
Architecture documentation for the excludeArtifactIdNoMatch() function in ExcludeFilterTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD d9f37035_a69b_73a6_467e_42e04423dd1d["excludeArtifactIdNoMatch()"] 256a2b93_8ab2_0a7a_1f05_de8600c14656["createExclude()"] d9f37035_a69b_73a6_467e_42e04423dd1d -->|calls| 256a2b93_8ab2_0a7a_1f05_de8600c14656 1091ed89_8586_c2fa_3bac_aadb7151adea["createArtifact()"] d9f37035_a69b_73a6_467e_42e04423dd1d -->|calls| 1091ed89_8586_c2fa_3bac_aadb7151adea style d9f37035_a69b_73a6_467e_42e04423dd1d 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 58–65
@Test
void excludeArtifactIdNoMatch() throws ArtifactFilterException {
ExcludeFilter filter = new ExcludeFilter(Arrays.asList(createExclude("com.foo", "bar")));
Artifact artifact = createArtifact("com.foo", "biz");
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 excludeArtifactIdNoMatch() do?
excludeArtifactIdNoMatch() is a function in the spring-boot codebase.
What does excludeArtifactIdNoMatch() call?
excludeArtifactIdNoMatch() 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