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