Home / Function/ excludeGroupIdNoMatch() — spring-boot Function Reference

excludeGroupIdNoMatch() — spring-boot Function Reference

Architecture documentation for the excludeGroupIdNoMatch() function in ExcludeFilterTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  4e361a8a_2f7b_793b_031c_a94da36f26b3["excludeGroupIdNoMatch()"]
  256a2b93_8ab2_0a7a_1f05_de8600c14656["createExclude()"]
  4e361a8a_2f7b_793b_031c_a94da36f26b3 -->|calls| 256a2b93_8ab2_0a7a_1f05_de8600c14656
  1091ed89_8586_c2fa_3bac_aadb7151adea["createArtifact()"]
  4e361a8a_2f7b_793b_031c_a94da36f26b3 -->|calls| 1091ed89_8586_c2fa_3bac_aadb7151adea
  style 4e361a8a_2f7b_793b_031c_a94da36f26b3 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 49–56

	@Test
	void excludeGroupIdNoMatch() throws ArtifactFilterException {
		ExcludeFilter filter = new ExcludeFilter(Arrays.asList(createExclude("com.foo", "bar")));
		Artifact artifact = createArtifact("com.baz", "bar");
		Set result = filter.filter(Collections.singleton(artifact));
		assertThat(result).hasSize(1);
		assertThat(result.iterator().next()).isSameAs(artifact);
	}

Domain

Subdomains

Frequently Asked Questions

What does excludeGroupIdNoMatch() do?
excludeGroupIdNoMatch() is a function in the spring-boot codebase.
What does excludeGroupIdNoMatch() call?
excludeGroupIdNoMatch() 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