Package org.apache.maven.model
Class Exclusion
java.lang.Object
org.apache.maven.model.Exclusion
- All Implemented Interfaces:
Serializable
The
<exclusion>
element contains
informations required to exclude
an artifact to the project.- Version:
- $Revision$ $Date$
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGet the artifact ID of the project to exclude.Get the group ID of the project to exclude.void
setArtifactId
(String artifactId) Set the artifact ID of the project to exclude.void
setGroupId
(String groupId) Set the group ID of the project to exclude.
-
Field Details
-
artifactId
The artifact ID of the project to exclude. -
groupId
The group ID of the project to exclude.
-
-
Constructor Details
-
Exclusion
public Exclusion()
-
-
Method Details
-
getArtifactId
Get the artifact ID of the project to exclude.- Returns:
- String
-
getGroupId
Get the group ID of the project to exclude.- Returns:
- String
-
setArtifactId
Set the artifact ID of the project to exclude.- Parameters:
artifactId
- a artifactId object.
-
setGroupId
Set the group ID of the project to exclude.- Parameters:
groupId
- a groupId object.
-