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 boolean
equals(Object o)
String
getArtifactId()
Getter for the fieldartifactId
.String
getGroupId()
Getter for the fieldgroupId
.int
hashCode()
boolean
matches(org.apache.maven.artifact.Artifact artifact)
Matches the groupId and artifactId.void
setArtifactId(String artifactId)
Setter for the fieldartifactId
.void
setGroupId(String groupId)
Setter for the fieldgroupId
.String
toString()
-
-
-
Method Detail
-
setGroupId
public void setGroupId(String groupId)
Setter for the field
groupId
.- Parameters:
groupId
- aString
object.
-
getArtifactId
public String getArtifactId()
Getter for the field
artifactId
.- Returns:
- a
String
object.
-
setArtifactId
public void setArtifactId(String artifactId)
Setter for the field
artifactId
.- Parameters:
artifactId
- aString
object.
-
matches
public boolean matches(org.apache.maven.artifact.Artifact artifact)
Matches the groupId and artifactId.
- Parameters:
artifact
- aArtifact
object.- Returns:
true
if both math,false
otherwise.
-
-