Uses of Class
org.eclipse.aether.graph.Dependency
Packages that use Dependency
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 Dependency in org.eclipse.aether.collection
Methods in org.eclipse.aether.collection that return DependencyModifier and TypeMethodDescriptionDependencyCollectionContext.getDependency()
Gets the dependency whose children are to be processed next during dependency collection.VersionFilter.VersionFilterContext.getDependency()
Gets the dependency whose version range is being filtered.CollectStepData.getNode()
Returns the current node being collected.CollectRequest.getRoot()
Gets the root dependency of the graph.Methods in org.eclipse.aether.collection that return types with arguments of type DependencyModifier and TypeMethodDescriptionCollectRequest.getDependencies()
Gets the direct dependencies.CollectRequest.getManagedDependencies()
Gets the dependency management to apply to transitive dependencies.DependencyCollectionContext.getManagedDependencies()
Gets the dependency management information that was contributed by the artifact descriptor of the current dependency.Methods in org.eclipse.aether.collection with parameters of type DependencyModifier and TypeMethodDescriptionCollectRequest.addDependency
(Dependency dependency) Adds the specified direct dependency.CollectRequest.addManagedDependency
(Dependency managedDependency) Adds the specified managed dependency.DependencyManager.manageDependency
(Dependency dependency) Applies dependency management to the specified dependency.boolean
DependencySelector.selectDependency
(Dependency dependency) Decides whether the specified dependency should be included in the dependency graph.CollectRequest.setRoot
(Dependency root) Sets the root dependency of the graph.boolean
DependencyTraverser.traverseDependency
(Dependency dependency) Decides whether the dependencies of the specified dependency should be traversed.Method parameters in org.eclipse.aether.collection with type arguments of type DependencyModifier and TypeMethodDescriptionCollectRequest.setDependencies
(List<Dependency> dependencies) Sets the direct dependencies.CollectRequest.setManagedDependencies
(List<Dependency> managedDependencies) Sets the dependency management to apply to transitive dependencies.Constructors in org.eclipse.aether.collection with parameters of type DependencyModifierConstructorDescriptionCollectRequest
(Dependency root, List<Dependency> dependencies, List<RemoteRepository> repositories) Creates a new request with the specified properties.CollectRequest
(Dependency root, List<RemoteRepository> repositories) Creates a request with the specified properties.Constructor parameters in org.eclipse.aether.collection with type arguments of type DependencyModifierConstructorDescriptionCollectRequest
(List<Dependency> dependencies, List<Dependency> managedDependencies, List<RemoteRepository> repositories) Creates a new request with the specified properties.CollectRequest
(Dependency root, List<Dependency> dependencies, List<RemoteRepository> repositories) Creates a new request with the specified properties. -
Uses of Dependency in org.eclipse.aether.graph
Methods in org.eclipse.aether.graph that return DependencyModifier and TypeMethodDescriptionDefaultDependencyNode.getDependency()
DependencyNode.getDependency()
Gets the dependency associated with this node.Dependency.setArtifact
(Artifact artifact) Sets the artifact being depended on.Dependency.setExclusions
(Collection<Exclusion> exclusions) Sets the exclusions for the dependency.Dependency.setOptional
(Boolean optional) Sets the optional flag for the dependency.Sets the scope of the dependency, e.g.Methods in org.eclipse.aether.graph that return types with arguments of type DependencyModifier and TypeMethodDescriptionDependencyCycle.getCyclicDependencies()
Gets the dependencies that actually form the cycle.DependencyCycle.getPrecedingDependencies()
Gets the dependencies that lead to the first dependency on the cycle, starting from the root of the dependency graph.Constructors in org.eclipse.aether.graph with parameters of type DependencyModifierConstructorDescriptionDefaultDependencyNode
(Dependency dependency) Creates a new node with the specified dependency. -
Uses of Dependency in org.eclipse.aether.resolution
Methods in org.eclipse.aether.resolution that return types with arguments of type DependencyModifier and TypeMethodDescriptionArtifactDescriptorResult.getDependencies()
Gets the list of direct dependencies of the artifact.ArtifactDescriptorResult.getManagedDependencies()
Gets the dependency management information.Methods in org.eclipse.aether.resolution with parameters of type DependencyModifier and TypeMethodDescriptionArtifactDescriptorResult.addDependency
(Dependency dependency) Adds the specified direct dependency.ArtifactDescriptorResult.addManagedDependency
(Dependency dependency) Adds the specified managed dependency.Method parameters in org.eclipse.aether.resolution with type arguments of type DependencyModifier and TypeMethodDescriptionArtifactDescriptorResult.setDependencies
(List<Dependency> dependencies) Sets the list of direct dependencies of the artifact.ArtifactDescriptorResult.setManagedDependencies
(List<Dependency> dependencies) Sets the dependency management information.