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

getDependencyURLs() — spring-boot Function Reference

Architecture documentation for the getDependencyURLs() function in AbstractDependencyFilterMojo.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  7b7e310a_1ef7_61b7_aea9_f188b4eaf7e5["getDependencyURLs()"]
  2fb9a4db_aa56_9af2_e5a5_0b0e004b6f00["filterDependencies()"]
  7b7e310a_1ef7_61b7_aea9_f188b4eaf7e5 -->|calls| 2fb9a4db_aa56_9af2_e5a5_0b0e004b6f00
  3647c118_f132_0ab1_5211_88a4020267d0["toURL()"]
  7b7e310a_1ef7_61b7_aea9_f188b4eaf7e5 -->|calls| 3647c118_f132_0ab1_5211_88a4020267d0
  style 7b7e310a_1ef7_61b7_aea9_f188b4eaf7e5 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

build-plugin/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/AbstractDependencyFilterMojo.java lines 114–123

	protected List<URL> getDependencyURLs(ArtifactsFilter... additionalFilters) throws MojoExecutionException {
		Set<Artifact> artifacts = filterDependencies(this.project.getArtifacts(), additionalFilters);
		List<URL> urls = new ArrayList<>();
		for (Artifact artifact : artifacts) {
			if (artifact.getFile() != null) {
				urls.add(toURL(artifact.getFile()));
			}
		}
		return urls;
	}

Domain

Subdomains

Calls

Frequently Asked Questions

What does getDependencyURLs() do?
getDependencyURLs() is a function in the spring-boot codebase.
What does getDependencyURLs() call?
getDependencyURLs() calls 2 function(s): filterDependencies, toURL.

Analyze Your Own Codebase

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

Try Supermodel Free