Package org.eclipse.aether.util.filter
Class ExclusionsDependencyFilter
java.lang.Object
org.eclipse.aether.util.filter.ExclusionsDependencyFilter
- All Implemented Interfaces:
DependencyFilter
A simple filter to exclude artifacts based on either artifact id or group id and artifact id.
-
Constructor Summary
ConstructorsConstructorDescriptionExclusionsDependencyFilter(Collection<String> excludes) Creates a new filter using the specified exclude patterns. -
Method Summary
Modifier and TypeMethodDescriptionbooleanaccept(DependencyNode node, List<DependencyNode> parents) Indicates whether the specified dependency node shall be included or excluded.booleaninthashCode()
-
Constructor Details
-
ExclusionsDependencyFilter
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 benullor empty to exclude no artifacts
-
-
Method Details
-
accept
Description copied from interface:DependencyFilterIndicates whether the specified dependency node shall be included or excluded.- Specified by:
acceptin interfaceDependencyFilter- Parameters:
node- The dependency node to filter, must not benull.parents- The (read-only) chain of parent nodes that leads to the node to be filtered, must not benull. Iterating this (possibly empty) list walks up the dependency graph towards the root node, i.e. the immediate parent node (if any) is the first node in the list. The size of the list also denotes the zero-based depth of the filtered node.- Returns:
trueto include the dependency node,falseto exclude it.
-
equals
-
hashCode
-