Package org.codehaus.mojo.exec
Class ExecutableDependency
- java.lang.Object
-
- org.codehaus.mojo.exec.ExecutableDependency
-
public class ExecutableDependency extends Object
ExecutableDependency class.
-
-
Constructor Summary
Constructors Constructor Description ExecutableDependency()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetArtifactId()Getter for the fieldartifactId.StringgetGroupId()Getter for the fieldgroupId.inthashCode()booleanmatches(org.apache.maven.artifact.Artifact artifact)Matches the groupId and artifactId.voidsetArtifactId(String artifactId)Setter for the fieldartifactId.voidsetGroupId(String groupId)Setter for the fieldgroupId.StringtoString()
-
-
-
Method Detail
-
setGroupId
public void setGroupId(String groupId)
Setter for the field
groupId.- Parameters:
groupId- aStringobject.
-
getArtifactId
public String getArtifactId()
Getter for the field
artifactId.- Returns:
- a
Stringobject.
-
setArtifactId
public void setArtifactId(String artifactId)
Setter for the field
artifactId.- Parameters:
artifactId- aStringobject.
-
matches
public boolean matches(org.apache.maven.artifact.Artifact artifact)
Matches the groupId and artifactId.
- Parameters:
artifact- aArtifactobject.- Returns:
trueif both math,falseotherwise.
-
-