Class 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()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
    • 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 form groupId:artifactId (recommended) or just artifactId (deprecated).
        Parameters:
        excludes - The exclude patterns, may be null 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 interface org.eclipse.aether.graph.DependencyFilter
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object