Package org.eclipse.aether.util.filter
Class ExclusionsDependencyFilter
- java.lang.Object
-
- org.eclipse.aether.util.filter.ExclusionsDependencyFilter
-
- All Implemented Interfaces:
org.eclipse.aether.graph.DependencyFilter
public final class ExclusionsDependencyFilter extends java.lang.Object implements org.eclipse.aether.graph.DependencyFilter
A simple filter to exclude artifacts based on either artifact id or group id and artifact id.
-
-
Constructor Summary
Constructors Constructor Description ExclusionsDependencyFilter(java.util.Collection<java.lang.String> excludes)
Creates a new filter using the specified exclude patterns.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
accept(org.eclipse.aether.graph.DependencyNode node, java.util.List<org.eclipse.aether.graph.DependencyNode> parents)
boolean
equals(java.lang.Object obj)
int
hashCode()
-
-
-
Constructor Detail
-
ExclusionsDependencyFilter
public ExclusionsDependencyFilter(java.util.Collection<java.lang.String> excludes)
Creates a new filter using the specified exclude patterns. A pattern can either be of the formgroupId:artifactId
(recommended) or justartifactId
(deprecated).- Parameters:
excludes
- The exclude patterns, may benull
or empty to exclude no artifacts.
-
-
Method Detail
-
accept
public boolean accept(org.eclipse.aether.graph.DependencyNode node, java.util.List<org.eclipse.aether.graph.DependencyNode> parents)
- Specified by:
accept
in interfaceorg.eclipse.aether.graph.DependencyFilter
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-