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

getClassPath() — spring-boot Function Reference

Architecture documentation for the getClassPath() function in ProcessTestAotMojo.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  c6646c7b_11bd_66b4_cd51_8d9cb75a8d1e["getClassPath()"]
  f93b965d_9ff9_b7df_c845_8f04da6b207e["executeAot()"]
  f93b965d_9ff9_b7df_c845_8f04da6b207e -->|calls| c6646c7b_11bd_66b4_cd51_8d9cb75a8d1e
  b57f92c6_b442_c9cd_7fbf_78c395eb0c7b["addJUnitPlatformLauncher()"]
  c6646c7b_11bd_66b4_cd51_8d9cb75a8d1e -->|calls| b57f92c6_b442_c9cd_7fbf_78c395eb0c7b
  style c6646c7b_11bd_66b4_cd51_8d9cb75a8d1e fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

build-plugin/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/ProcessTestAotMojo.java lines 154–163

	protected URL[] getClassPath(boolean includeJUnitPlatformLauncher) throws Exception {
		File[] directories = new File[] { this.testClassesDirectory, this.generatedTestClasses, this.classesDirectory,
				this.generatedClasses };
		URL[] classPath = getClassPath(directories, DEVTOOLS_EXCLUDE_FILTER);
		if (!includeJUnitPlatformLauncher || this.project.getArtifactMap()
			.containsKey(JUNIT_PLATFORM_GROUP_ID + ":" + JUNIT_PLATFORM_LAUNCHER_ARTIFACT_ID)) {
			return classPath;
		}
		return addJUnitPlatformLauncher(classPath);
	}

Domain

Subdomains

Called By

Frequently Asked Questions

What does getClassPath() do?
getClassPath() is a function in the spring-boot codebase.
What does getClassPath() call?
getClassPath() calls 1 function(s): addJUnitPlatformLauncher.
What calls getClassPath()?
getClassPath() is called by 1 function(s): executeAot.

Analyze Your Own Codebase

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

Try Supermodel Free