filterGroupIdExactMatch() — spring-boot Function Reference
Architecture documentation for the filterGroupIdExactMatch() function in DependencyFilterMojoTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 75ed202d_9ac9_dea1_047a_6c3727bff3f5["filterGroupIdExactMatch()"] be0b1e22_046a_e9be_c420_b6ab5cd75531["TestableDependencyFilterMojo()"] 75ed202d_9ac9_dea1_047a_6c3727bff3f5 -->|calls| be0b1e22_046a_e9be_c420_b6ab5cd75531 10b458de_edbc_7e5d_b78a_0ba0ccf9e60e["createArtifact()"] 75ed202d_9ac9_dea1_047a_6c3727bff3f5 -->|calls| 10b458de_edbc_7e5d_b78a_0ba0ccf9e60e 12e99f63_f866_1352_2136_4d94b5749ebb["filterDependencies()"] 75ed202d_9ac9_dea1_047a_6c3727bff3f5 -->|calls| 12e99f63_f866_1352_2136_4d94b5749ebb style 75ed202d_9ac9_dea1_047a_6c3727bff3f5 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-maven-plugin/src/test/java/org/springframework/boot/maven/DependencyFilterMojoTests.java lines 66–75
@Test
void filterGroupIdExactMatch() throws MojoExecutionException {
TestableDependencyFilterMojo mojo = new TestableDependencyFilterMojo(Collections.emptyList(), "com.foo");
Artifact artifact = createArtifact("com.foo.bar", "one");
Set<Artifact> artifacts = mojo.filterDependencies(createArtifact("com.foo", "one"),
createArtifact("com.foo", "two"), artifact);
assertThat(artifacts).hasSize(1);
assertThat(artifacts.iterator().next()).isSameAs(artifact);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does filterGroupIdExactMatch() do?
filterGroupIdExactMatch() is a function in the spring-boot codebase.
What does filterGroupIdExactMatch() call?
filterGroupIdExactMatch() calls 3 function(s): TestableDependencyFilterMojo, createArtifact, filterDependencies.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free