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

jarTypeFilteringIsAppliedToTheClasspath() — spring-boot Function Reference

Architecture documentation for the jarTypeFilteringIsAppliedToTheClasspath() function in BootRunIntegrationTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  712ffc3d_c4e4_c3e6_1efc_52c5f54e90ab["jarTypeFilteringIsAppliedToTheClasspath()"]
  b0962c18_0cd6_ab0b_40fc_652f0c4df7c6["copyClasspathApplication()"]
  712ffc3d_c4e4_c3e6_1efc_52c5f54e90ab -->|calls| b0962c18_0cd6_ab0b_40fc_652f0c4df7c6
  f63664b4_ce61_83f0_8542_64359d86834b["createDependenciesStarterJar()"]
  712ffc3d_c4e4_c3e6_1efc_52c5f54e90ab -->|calls| f63664b4_ce61_83f0_8542_64359d86834b
  57f23dd4_13cc_4172_7092_047cd895ffb8["createStandardJar()"]
  712ffc3d_c4e4_c3e6_1efc_52c5f54e90ab -->|calls| 57f23dd4_13cc_4172_7092_047cd895ffb8
  style 712ffc3d_c4e4_c3e6_1efc_52c5f54e90ab fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

build-plugin/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/tasks/run/BootRunIntegrationTests.java lines 146–157

	@TestTemplate
	void jarTypeFilteringIsAppliedToTheClasspath() throws IOException {
		copyClasspathApplication();
		File flatDirRepository = new File(this.gradleBuild.getProjectDir(), "repository");
		createDependenciesStarterJar(new File(flatDirRepository, "starter.jar"));
		createStandardJar(new File(flatDirRepository, "standard.jar"));
		BuildResult result = this.gradleBuild.build("bootRun");
		BuildTask task = result.task(":bootRun");
		assertThat(task).isNotNull();
		assertThat(task.getOutcome()).isEqualTo(TaskOutcome.SUCCESS);
		assertThat(result.getOutput()).contains("standard.jar").doesNotContain("starter.jar");
	}

Domain

Subdomains

Frequently Asked Questions

What does jarTypeFilteringIsAppliedToTheClasspath() do?
jarTypeFilteringIsAppliedToTheClasspath() is a function in the spring-boot codebase.
What does jarTypeFilteringIsAppliedToTheClasspath() call?
jarTypeFilteringIsAppliedToTheClasspath() calls 3 function(s): copyClasspathApplication, createDependenciesStarterJar, createStandardJar.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free