Package org.glassfish.build
Class FeatureSetsDependenciesMojo.DependencyMapping
- java.lang.Object
-
- org.glassfish.build.FeatureSetsDependenciesMojo.DependencyMapping
-
- Enclosing class:
- FeatureSetsDependenciesMojo
public static class FeatureSetsDependenciesMojo.DependencyMapping extends java.lang.Object
Configuration of dependency mapping to name. This allows customizing names of dependencies unpacked.
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
artifactId
The artifacTId of the dependency.private java.lang.String
groupId
The groupId of the dependency.private java.lang.String
name
The mapped name of the dependency.
-
Constructor Summary
Constructors Constructor Description DependencyMapping()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getArtifactId()
Get the artifactId of the dependency.java.lang.String
getGroupId()
Get the groupId of the dependency.java.lang.String
getName()
Get the mapped name of the dependency.void
setArtifactId(java.lang.String depArtifactId)
Set the artifactId of the dependency.void
setGroupId(java.lang.String depGroupId)
Set the groupId of the dependency.void
setName(java.lang.String depName)
Set the mapped name of the dependency.
-
-
-
Method Detail
-
setArtifactId
public void setArtifactId(java.lang.String depArtifactId)
Set the artifactId of the dependency.- Parameters:
depArtifactId
- the artifactId
-
getArtifactId
public java.lang.String getArtifactId()
Get the artifactId of the dependency.- Returns:
- the artifactId
-
setGroupId
public void setGroupId(java.lang.String depGroupId)
Set the groupId of the dependency.- Parameters:
depGroupId
- the groupId
-
getGroupId
public java.lang.String getGroupId()
Get the groupId of the dependency.- Returns:
- the groupId
-
setName
public void setName(java.lang.String depName)
Set the mapped name of the dependency.- Parameters:
depName
- the mapped name
-
getName
public java.lang.String getName()
Get the mapped name of the dependency.- Returns:
- the groupId
-
-