public final class ExclusionsDependencyFilter extends Object implements DependencyFilter
| Constructor and Description |
|---|
ExclusionsDependencyFilter(Collection<String> excludes)
Creates a new filter using the specified exclude patterns.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
accept(DependencyNode node,
List<DependencyNode> parents)
Indicates whether the specified dependency node shall be included or excluded.
|
boolean |
equals(Object obj) |
int |
hashCode() |
public ExclusionsDependencyFilter(Collection<String> excludes)
groupId:artifactId (recommended) or just artifactId (deprecated).excludes - The exclude patterns, may be null or empty to exclude no artifacts.public boolean accept(DependencyNode node, List<DependencyNode> parents)
DependencyFilteraccept in interface DependencyFilternode - The dependency node to filter, must not be null.parents - The (read-only) chain of parent nodes that leads to the node to be filtered, must not be
null. 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.true to include the dependency node, false to exclude it.Copyright © 2010-2014 The Eclipse Foundation. All Rights Reserved.