Uses of Class
org.eclipse.aether.graph.Exclusion
Packages that use Exclusion
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.
Various dependency managers for building a dependency graph.
Various dependency selectors for building a dependency graph.
- 
Uses of Exclusion in org.eclipse.aether.collectionMethods in org.eclipse.aether.collection that return types with arguments of type ExclusionModifier and TypeMethodDescriptionDependencyManagement.getExclusions()Gets the new exclusions to apply to the dependency.Method parameters in org.eclipse.aether.collection with type arguments of type ExclusionModifier and TypeMethodDescriptionDependencyManagement.setExclusions(Collection<Exclusion> exclusions) Sets the new exclusions to apply to the dependency.
- 
Uses of Exclusion in org.eclipse.aether.graphMethods in org.eclipse.aether.graph that return types with arguments of type ExclusionModifier and TypeMethodDescriptionDependency.getExclusions()Gets the exclusions for this dependency.Method parameters in org.eclipse.aether.graph with type arguments of type ExclusionModifier and TypeMethodDescriptionDependency.setExclusions(Collection<Exclusion> exclusions) Sets the exclusions for the dependency.Constructor parameters in org.eclipse.aether.graph with type arguments of type ExclusionModifierConstructorDescriptionDependency(Artifact artifact, String scope, Boolean optional, Collection<Exclusion> exclusions) Creates a dependency on the specified artifact with the given scope and exclusions.
- 
Uses of Exclusion in org.eclipse.aether.util.graph.managerFields in org.eclipse.aether.util.graph.manager with type parameters of type ExclusionModifier and TypeFieldDescriptionprotected final MMap<AbstractDependencyManager.Key, AbstractDependencyManager.Holder<Collection<Exclusion>>> AbstractDependencyManager.managedExclusionsManaged exclusions keyed by dependency coordinates.Methods in org.eclipse.aether.util.graph.manager that return types with arguments of type ExclusionModifier and TypeMethodDescriptionstatic Collection<Exclusion> DependencyManagerUtils.getPremanagedExclusions(DependencyNode node) Gets theExclusions of the specified dependency node before dependency management was applied (if any).
- 
Uses of Exclusion in org.eclipse.aether.util.graph.selectorConstructor parameters in org.eclipse.aether.util.graph.selector with type arguments of type ExclusionModifierConstructorDescriptionExclusionDependencySelector(Collection<Exclusion> exclusions) Creates a new selector with the specified exclusions.