Uses of Interface
org.eclipse.aether.graph.DependencyNode
Package
Description
The types and extension points for collecting the transitive dependencies of an artifact and building a dependency
graph.
The representation of a dependency graph by means of connected dependency nodes.
The types supporting the resolution of artifacts and metadata from repositories.
-
Uses of DependencyNode in org.eclipse.aether.collection
Modifier and TypeMethodDescriptionCollectResult.getRoot()
Gets the root node of the dependency graph.DependencyGraphTransformer.transformGraph
(DependencyNode node, DependencyGraphTransformationContext context) Transforms the dependency graph denoted by the specified root node.Modifier and TypeMethodDescriptionCollectStepData.getPath()
Returns the path of dependency nodes that led collector to current node returned byCollectStepData.getNode()
.Collection
<? extends List<? extends DependencyNode>> UnsolvableVersionConflictException.getPaths()
Gets the paths leading to the conflicting dependencies.Modifier and TypeMethodDescriptionCollectResult.setRoot
(DependencyNode root) Sets the root node of the dependency graph.DependencyGraphTransformer.transformGraph
(DependencyNode node, DependencyGraphTransformationContext context) Transforms the dependency graph denoted by the specified root node.ModifierConstructorDescriptionUnsolvableVersionConflictException
(Collection<? extends List<? extends DependencyNode>> paths) Creates a new exception with the specified paths to conflicting nodes in the dependency graph. -
Uses of DependencyNode in org.eclipse.aether.graph
Modifier and TypeClassDescriptionfinal class
A node within a dependency graph.Modifier and TypeMethodDescriptionDefaultDependencyNode.getChildren()
DependencyNode.getChildren()
Gets the child nodes of this node.Modifier and TypeMethodDescriptionboolean
DependencyFilter.accept
(DependencyNode node, List<DependencyNode> parents) Indicates whether the specified dependency node shall be included or excluded.boolean
DependencyVisitor.visitEnter
(DependencyNode node) Notifies the visitor of a node visit before its children have been processed.boolean
DependencyVisitor.visitLeave
(DependencyNode node) Notifies the visitor of a node visit after its children have been processed.Modifier and TypeMethodDescriptionboolean
DependencyFilter.accept
(DependencyNode node, List<DependencyNode> parents) Indicates whether the specified dependency node shall be included or excluded.void
DefaultDependencyNode.setChildren
(List<DependencyNode> children) void
DependencyNode.setChildren
(List<DependencyNode> children) Sets the child nodes of this node.ModifierConstructorDescriptionCreates a mostly shallow clone of the specified node. -
Uses of DependencyNode in org.eclipse.aether.resolution
Modifier and TypeMethodDescriptionArtifactRequest.getDependencyNode()
Gets the dependency node (if any) for which to resolve the artifact.DependencyRequest.getRoot()
Gets the root node of the dependency graph whose artifacts should be resolved.DependencyResult.getRoot()
Gets the root node of the resolved dependency graph.Modifier and TypeMethodDescriptionArtifactRequest.setDependencyNode
(DependencyNode node) Sets the dependency node to resolve.DependencyRequest.setRoot
(DependencyNode root) Sets the root node of the dependency graph whose artifacts should be resolved.DependencyResult.setRoot
(DependencyNode root) Sets the root node of the resolved dependency graph.ModifierConstructorDescriptionCreates a request from the specified dependency node.DependencyRequest
(DependencyNode node, DependencyFilter filter) Creates a request for the specified dependency graph and with the given resolution filter.