Uses of Class
org.eclipse.aether.graph.Exclusion
-
Packages that use Exclusion Package Description org.eclipse.aether.collection The types and extension points for collecting the transitive dependencies of an artifact and building a dependency graph.org.eclipse.aether.graph The representation of a dependency graph by means of connected dependency nodes.org.eclipse.aether.internal.impl.collect Internal helper classes for dependency collector.org.eclipse.aether.util.graph.manager Various dependency managers for building a dependency graph.org.eclipse.aether.util.graph.selector Various dependency selectors for building a dependency graph. -
-
Uses of Exclusion in org.eclipse.aether.collection
Fields in org.eclipse.aether.collection with type parameters of type Exclusion Modifier and Type Field Description private java.util.Collection<Exclusion>
DependencyManagement. exclusions
Methods in org.eclipse.aether.collection that return types with arguments of type Exclusion Modifier and Type Method Description java.util.Collection<Exclusion>
DependencyManagement. getExclusions()
Gets the new exclusions to apply to the dependency.Method parameters in org.eclipse.aether.collection with type arguments of type Exclusion Modifier and Type Method Description DependencyManagement
DependencyManagement. setExclusions(java.util.Collection<Exclusion> exclusions)
Sets the new exclusions to apply to the dependency. -
Uses of Exclusion in org.eclipse.aether.graph
Fields in org.eclipse.aether.graph declared as Exclusion Modifier and Type Field Description private Exclusion[]
Dependency.Exclusions. exclusions
Fields in org.eclipse.aether.graph with type parameters of type Exclusion Modifier and Type Field Description private java.util.Set<Exclusion>
Dependency. exclusions
Methods in org.eclipse.aether.graph that return types with arguments of type Exclusion Modifier and Type Method Description static java.util.Set<Exclusion>
Dependency.Exclusions. copy(java.util.Collection<Exclusion> exclusions)
java.util.Collection<Exclusion>
Dependency. getExclusions()
Gets the exclusions for this dependency.java.util.Iterator<Exclusion>
Dependency.Exclusions. iterator()
Method parameters in org.eclipse.aether.graph with type arguments of type Exclusion Modifier and Type Method Description static java.util.Set<Exclusion>
Dependency.Exclusions. copy(java.util.Collection<Exclusion> exclusions)
private boolean
Dependency. hasEquivalentExclusions(java.util.Collection<Exclusion> exclusions)
Dependency
Dependency. setExclusions(java.util.Collection<Exclusion> exclusions)
Sets the exclusions for the dependency.Constructor parameters in org.eclipse.aether.graph with type arguments of type Exclusion Constructor Description Dependency(Artifact artifact, java.lang.String scope, java.lang.Boolean optional, java.util.Collection<Exclusion> exclusions)
Creates a dependency on the specified artifact with the given scope and exclusions.Dependency(Artifact artifact, java.lang.String scope, java.util.Set<Exclusion> exclusions, java.lang.Boolean optional)
Exclusions(java.util.Collection<Exclusion> exclusions)
-
Uses of Exclusion in org.eclipse.aether.internal.impl.collect
Fields in org.eclipse.aether.internal.impl.collect with type parameters of type Exclusion Modifier and Type Field Description (package private) java.util.Collection<Exclusion>
DefaultDependencyCollector.PremanagedDependency. premanagedExclusions
Constructor parameters in org.eclipse.aether.internal.impl.collect with type arguments of type Exclusion Constructor Description PremanagedDependency(java.lang.String premanagedVersion, java.lang.String premanagedScope, java.lang.Boolean premanagedOptional, java.util.Collection<Exclusion> premanagedExclusions, java.util.Map<java.lang.String,java.lang.String> premanagedProperties, int managedBits, Dependency managedDependency, boolean premanagedState)
-
Uses of Exclusion in org.eclipse.aether.util.graph.manager
Fields in org.eclipse.aether.util.graph.manager with type parameters of type Exclusion Modifier and Type Field Description private java.util.Map<java.lang.Object,java.util.Collection<Exclusion>>
ClassicDependencyManager. managedExclusions
private java.util.Map<java.lang.Object,java.util.Collection<Exclusion>>
DefaultDependencyManager. managedExclusions
private java.util.Map<java.lang.Object,java.util.Collection<Exclusion>>
TransitiveDependencyManager. managedExclusions
Methods in org.eclipse.aether.util.graph.manager that return types with arguments of type Exclusion Modifier and Type Method Description static java.util.Collection<Exclusion>
DependencyManagerUtils. getPremanagedExclusions(DependencyNode node)
Gets theExclusion
s of the specified dependency node before dependency management was applied (if any). -
Uses of Exclusion in org.eclipse.aether.util.graph.selector
Fields in org.eclipse.aether.util.graph.selector declared as Exclusion Modifier and Type Field Description private Exclusion[]
ExclusionDependencySelector. exclusions
Methods in org.eclipse.aether.util.graph.selector with parameters of type Exclusion Modifier and Type Method Description int
ExclusionDependencySelector.ExclusionComparator. compare(Exclusion e1, Exclusion e2)
private boolean
ExclusionDependencySelector. matches(Exclusion exclusion, Artifact artifact)
Constructors in org.eclipse.aether.util.graph.selector with parameters of type Exclusion Constructor Description ExclusionDependencySelector(Exclusion[] exclusions)
Constructor parameters in org.eclipse.aether.util.graph.selector with type arguments of type Exclusion Constructor Description ExclusionDependencySelector(java.util.Collection<Exclusion> exclusions)
Creates a new selector with the specified exclusions.
-