Package org.apache.maven.model
Class Exclusion
- java.lang.Object
-
- org.apache.maven.model.Exclusion
-
- All Implemented Interfaces:
Serializable
public class Exclusion extends Object implements Serializable
The<exclusion>element contains informations required to exclude an artifact to the project.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Exclusion()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetArtifactId()Get the artifact ID of the project to exclude.StringgetGroupId()Get the group ID of the project to exclude.voidsetArtifactId(String artifactId)Set the artifact ID of the project to exclude.voidsetGroupId(String groupId)Set the group ID of the project to exclude.
-
-
-
Method Detail
-
getArtifactId
public String getArtifactId()
Get the artifact ID of the project to exclude.- Returns:
- String
-
getGroupId
public String getGroupId()
Get the group ID of the project to exclude.- Returns:
- String
-
setArtifactId
public void setArtifactId(String artifactId)
Set the artifact ID of the project to exclude.- Parameters:
artifactId-
-
setGroupId
public void setGroupId(String groupId)
Set the group ID of the project to exclude.- Parameters:
groupId-
-
-