Class FatArtifactTraverser
java.lang.Object
org.eclipse.aether.util.graph.traverser.FatArtifactTraverser
- All Implemented Interfaces:
DependencyTraverser
A dependency traverser that excludes the dependencies of fat artifacts from the traversal. Fat artifacts are
artifacts that have the property
ArtifactProperties.INCLUDES_DEPENDENCIES
set to
true
.- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionDerives a dependency traverser that will be used to decide whether the transitive dependencies of the dependency given in the collection context shall be traversed.boolean
int
hashCode()
boolean
traverseDependency
(Dependency dependency) Decides whether the dependencies of the specified dependency should be traversed.
-
Constructor Details
-
FatArtifactTraverser
public FatArtifactTraverser()Creates a new instance of this dependency traverser.
-
-
Method Details
-
traverseDependency
Description copied from interface:DependencyTraverser
Decides whether the dependencies of the specified dependency should be traversed.- Specified by:
traverseDependency
in interfaceDependencyTraverser
- Parameters:
dependency
- The dependency to check, must not benull
.- Returns:
true
if the dependency graph builder should recurse into the specified dependency and process its dependencies,false
otherwise.
-
deriveChildTraverser
Description copied from interface:DependencyTraverser
Derives a dependency traverser that will be used to decide whether the transitive dependencies of the dependency given in the collection context shall be traversed. When calculating the child traverser, implementors are strongly advised to simply return the current instance if nothing changed to help save memory.- Specified by:
deriveChildTraverser
in interfaceDependencyTraverser
- Parameters:
context
- The dependency collection context, must not benull
.- Returns:
- The dependency traverser for the target node or
null
if dependencies should be unconditionally traversed in the sub graph.
-
equals
-
hashCode
-