Package org.apache.maven.model
Class Parent
- java.lang.Object
-
- org.apache.maven.model.Parent
-
- All Implemented Interfaces:
java.io.Serializable
public class Parent extends java.lang.Object implements java.io.Serializable
The<parent>
element contains informations required to the parent project.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Parent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description 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()
java.lang.String
getRelativePath()
Get the relative path of the parentpom.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
setRelativePath(java.lang.String relativePath)
Set the relative path of the parentpom.xml
file within the check out.void
setVersion(java.lang.String version)
Set the version of the parent project to inherit.
-
-
-
Method Detail
-
getArtifactId
public java.lang.String getArtifactId()
Get the artifact id of the parent project to inherit from.- Returns:
- String
-
getGroupId
public java.lang.String getGroupId()
Get the group id of the parent project to inherit from.- Returns:
- String
-
getRelativePath
public java.lang.String getRelativePath()
Get the relative path of the parentpom.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.- Returns:
- String
-
getVersion
public java.lang.String getVersion()
Get the version of the parent project to inherit.- Returns:
- String
-
setArtifactId
public void setArtifactId(java.lang.String artifactId)
Set the artifact id of the parent project to inherit from.- Parameters:
artifactId
-
-
setGroupId
public void setGroupId(java.lang.String groupId)
Set the group id of the parent project to inherit from.- Parameters:
groupId
-
-
setRelativePath
public void setRelativePath(java.lang.String relativePath)
Set the relative path of the parentpom.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.- Parameters:
relativePath
-
-
setVersion
public void setVersion(java.lang.String version)
Set the version of the parent project to inherit.- Parameters:
version
-
-
getId
public java.lang.String getId()
- Returns:
- the id as
groupId:artifactId:version
-
-