public class Parent extends Object implements Serializable
<parent>
element contains
informations required to the parent project.Constructor and Description |
---|
Parent() |
Modifier and Type | Method and Description |
---|---|
String |
getArtifactId()
Get the artifact id of the parent project to inherit from.
|
String |
getGroupId()
Get the group id of the parent project to inherit from.
|
String |
getId() |
String |
getRelativePath()
Get the relative path of the parent
pom.xml
file within the check out. |
String |
getVersion()
Get the version of the parent project to inherit.
|
void |
setArtifactId(String artifactId)
Set the artifact id of the parent project to inherit from.
|
void |
setGroupId(String groupId)
Set the group id of the parent project to inherit from.
|
void |
setRelativePath(String relativePath)
Set the relative path of the parent
pom.xml
file within the check out. |
void |
setVersion(String version)
Set the version of the parent project to inherit.
|
public String getArtifactId()
public String getGroupId()
public String getRelativePath()
pom.xml
file within the check out.
The default value is ../pom.xml
.
Maven looks for the parent pom first in the
reactor of currently building projects, then 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.public String getVersion()
public void setArtifactId(String artifactId)
artifactId
- public void setGroupId(String groupId)
groupId
- public void setRelativePath(String relativePath)
pom.xml
file within the check out.
The default value is ../pom.xml
.
Maven looks for the parent pom first in the
reactor of currently building projects, then 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.relativePath
- public void setVersion(String version)
version
- public String getId()
groupId:artifactId:version
Copyright © 2001-2014 The Apache Software Foundation. All Rights Reserved.