public class Parent extends java.lang.Object implements java.io.Serializable, java.lang.Cloneable, InputLocationTracker
<parent>
element contains
information required to locate the parent project from which
this project will inherit from.
Note: The children of this element are
not interpolated and must be given as literal values.Modifier and Type | Field and Description |
---|---|
private java.lang.String |
artifactId
The artifact id of the parent project to inherit from.
|
private java.lang.String |
groupId
The group id of the parent project to inherit from.
|
private java.util.Map<java.lang.Object,InputLocation> |
locations
Field locations.
|
private java.lang.String |
relativePath
The relative path of the parent
pom.xml file within the check out. |
private java.lang.String |
version
The version of the parent project to inherit.
|
Constructor and Description |
---|
Parent() |
Modifier and Type | Method and Description |
---|---|
Parent |
clone()
Method clone.
|
java.lang.String |
getArtifactId()
Get the artifact id of the parent project to inherit from.
|
java.lang.String |
getGroupId()
Get the group id of the parent project to inherit from.
|
java.lang.String |
getId() |
InputLocation |
getLocation(java.lang.Object key)
Gets the location of the specified field in the input
source.
|
java.lang.String |
getRelativePath()
Get the relative path of the parent
pom.xml
file within the check out. |
java.lang.String |
getVersion()
Get the version of the parent project to inherit.
|
void |
setArtifactId(java.lang.String artifactId)
Set the artifact id of the parent project to inherit from.
|
void |
setGroupId(java.lang.String groupId)
Set the group id of the parent project to inherit from.
|
void |
setLocation(java.lang.Object key,
InputLocation location)
Sets the location of the specified field.
|
void |
setRelativePath(java.lang.String relativePath)
Set the relative path of the parent
pom.xml
file within the check out. |
void |
setVersion(java.lang.String version)
Set the version of the parent project to inherit.
|
java.lang.String |
toString() |
private java.lang.String groupId
private java.lang.String artifactId
private java.lang.String version
private java.lang.String relativePath
pom.xml
file within the check out.
If not specified, it defaults to
../pom.xml
.
Maven looks for the parent POM first in this
location on
the filesystem, then the local repository, and
lastly in the remote repo.
relativePath
allows you to select a
different location,
for example when your structure is flat, or
deeper without an intermediate parent POM.
However, the group ID, artifact ID and version
are still required,
and must match the file in the location given or
it will revert to the repository for the POM.
This feature is only for enhancing the
development in a local checkout of that project.
Set the value to an empty string in case you
want to disable the feature and always resolve
the parent POM from the repositories.private java.util.Map<java.lang.Object,InputLocation> locations
public Parent clone()
clone
in class java.lang.Object
public java.lang.String getArtifactId()
public java.lang.String getGroupId()
public InputLocation getLocation(java.lang.Object key)
InputLocationTracker
getLocation
in interface InputLocationTracker
key
- public java.lang.String getRelativePath()
pom.xml
file within the check out.
If not specified, it defaults to
../pom.xml
.
Maven looks for the parent POM first in this
location on
the filesystem, then the local repository, and
lastly in the remote repo.
relativePath
allows you to select a
different location,
for example when your structure is flat, or
deeper without an intermediate parent POM.
However, the group ID, artifact ID and version
are still required,
and must match the file in the location given or
it will revert to the repository for the POM.
This feature is only for enhancing the
development in a local checkout of that project.
Set the value to an empty string in case you
want to disable the feature and always resolve
the parent POM from the repositories.public java.lang.String getVersion()
public void setArtifactId(java.lang.String artifactId)
artifactId
- public void setGroupId(java.lang.String groupId)
groupId
- public void setLocation(java.lang.Object key, InputLocation location)
InputLocationTracker
setLocation
in interface InputLocationTracker
key
- location
- public void setRelativePath(java.lang.String relativePath)
pom.xml
file within the check out.
If not specified, it defaults to
../pom.xml
.
Maven looks for the parent POM first in this
location on
the filesystem, then the local repository, and
lastly in the remote repo.
relativePath
allows you to select a
different location,
for example when your structure is flat, or
deeper without an intermediate parent POM.
However, the group ID, artifact ID and version
are still required,
and must match the file in the location given or
it will revert to the repository for the POM.
This feature is only for enhancing the
development in a local checkout of that project.
Set the value to an empty string in case you
want to disable the feature and always resolve
the parent POM from the repositories.relativePath
- public void setVersion(java.lang.String version)
version
- public java.lang.String getId()
groupId:artifactId:version
public java.lang.String toString()
toString
in class java.lang.Object