Uses of Interface
org.eclipse.aether.collection.DependencySelector
Packages that use DependencySelector
Package
Description
The primary API of the
RepositorySystem
and its functionality.The types and extension points for collecting the transitive dependencies of an artifact and building a dependency
graph.
Internal helper classes for dependency collector.
Various dependency selectors for building a dependency graph.
-
Uses of DependencySelector in org.eclipse.aether
Methods in org.eclipse.aether that return DependencySelectorModifier and TypeMethodDescriptionAbstractForwardingRepositorySystemSession.getDependencySelector()
DefaultRepositorySystemSession.getDependencySelector()
RepositorySystemSession.getDependencySelector()
Gets the dependency selector to use for building dependency graphs.Methods in org.eclipse.aether with parameters of type DependencySelectorModifier and TypeMethodDescriptionDefaultRepositorySystemSession.setDependencySelector
(DependencySelector dependencySelector) Sets the dependency selector to use for building dependency graphs. -
Uses of DependencySelector in org.eclipse.aether.collection
Methods in org.eclipse.aether.collection that return DependencySelectorModifier and TypeMethodDescriptionDependencySelector.deriveChildSelector
(DependencyCollectionContext context) Derives a dependency selector for the specified collection context. -
Uses of DependencySelector in org.eclipse.aether.internal.impl.collect
Methods in org.eclipse.aether.internal.impl.collect with parameters of type DependencySelectorModifier and TypeMethodDescriptionDataPool.toKey
(Artifact artifact, List<RemoteRepository> repositories, DependencySelector selector, DependencyManager manager, DependencyTraverser traverser, VersionFilter filter) -
Uses of DependencySelector in org.eclipse.aether.util.graph.selector
Classes in org.eclipse.aether.util.graph.selector that implement DependencySelectorModifier and TypeClassDescriptionfinal class
A dependency selector that combines zero or more other selectors using a logicalAND
.final class
A dependency selector that applies exclusions based on artifact coordinates.final class
A dependency selector that excludes optional dependencies which occur beyond level one of the dependency graph.final class
A dependency selector that filters transitive dependencies based on their scope.final class
A dependency selector that always includes or excludes dependencies.Methods in org.eclipse.aether.util.graph.selector that return DependencySelectorModifier and TypeMethodDescriptionAndDependencySelector.deriveChildSelector
(DependencyCollectionContext context) ExclusionDependencySelector.deriveChildSelector
(DependencyCollectionContext context) OptionalDependencySelector.deriveChildSelector
(DependencyCollectionContext context) ScopeDependencySelector.deriveChildSelector
(DependencyCollectionContext context) StaticDependencySelector.deriveChildSelector
(DependencyCollectionContext context) static DependencySelector
AndDependencySelector.newInstance
(DependencySelector selector1, DependencySelector selector2) Creates a new selector from the specified selectors.Methods in org.eclipse.aether.util.graph.selector with parameters of type DependencySelectorModifier and TypeMethodDescriptionstatic DependencySelector
AndDependencySelector.newInstance
(DependencySelector selector1, DependencySelector selector2) Creates a new selector from the specified selectors.Constructors in org.eclipse.aether.util.graph.selector with parameters of type DependencySelectorModifierConstructorDescriptionAndDependencySelector
(DependencySelector... selectors) Creates a new selector from the specified selectors.Constructor parameters in org.eclipse.aether.util.graph.selector with type arguments of type DependencySelectorModifierConstructorDescriptionAndDependencySelector
(Collection<? extends DependencySelector> selectors) Creates a new selector from the specified selectors.