Class DefaultDependency

java.lang.Object
org.apache.maven.internal.impl.DefaultDependency
All Implemented Interfaces:
Artifact, Dependency

public class DefaultDependency extends Object implements Dependency
  • Constructor Details

  • Method Details

    • key

      public String key()
      Specified by:
      key in interface Artifact
    • getVersion

      public Version getVersion()
      Specified by:
      getVersion in interface Artifact
    • getBaseVersion

      public Version getBaseVersion()
      Specified by:
      getBaseVersion in interface Artifact
    • isSnapshot

      public boolean isSnapshot()
      Specified by:
      isSnapshot in interface Artifact
    • isOptional

      public boolean isOptional()
      Specified by:
      isOptional in interface Dependency
    • toCoordinates

      @Nonnull public DependencyCoordinates toCoordinates()
      Specified by:
      toCoordinates in interface Artifact
      Specified by:
      toCoordinates in interface Dependency
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • getGroupId

      public String getGroupId()
      Returns the group identifier of the wrapped dependency. The default implementation delegates to the Eclipse Aether artifact.
      Returns:
      the group identifier of the wrapped dependency
    • getArtifactId

      public String getArtifactId()
      Returns the artifact identifier of the wrapped dependency. The default implementation delegates to the Eclipse Aether artifact.
      Returns:
      the artifact identifier of the wrapped dependency
    • getExtension

      public String getExtension()
      Returns the file extension of the wrapped dependency. The default implementation delegates to the Eclipse Aether artifact.
      Returns:
      the file extension of the wrapped dependency
    • getType

      public Type getType()
      Returns the type of the wrapped dependency. The default implementation infers the type from the properties associated to the Eclipse Aether artifact.
      Returns:
      the type of the wrapped dependency
    • getClassifier

      @Nonnull public String getClassifier()
      Returns the classifier ("jar", "test-jar", …) of the wrapped dependency. The default implementation first delegates to the Eclipse Aether artifact. If the latter does not provide a non-empty classifier, then the default value is determined by type.
      Returns:
      the classifier ("jar", "test-jar", …) of the wrapped dependency
    • getScope

      @Nonnull public DependencyScope getScope()
      Returns the scope (compile, test, …) of this dependency.
      Returns:
      the scope (compile, test, …) of this dependency
    • toString

      public String toString()
      Returns a string representation of this dependency. This is for debugging purposes only and may change in any future version.
      Overrides:
      toString in class Object
      Returns:
      a string representation of this dependency