Package org.apache.maven.model
Class DeploymentRepository
- java.lang.Object
-
- org.apache.maven.model.RepositoryBase
-
- org.apache.maven.model.Repository
-
- org.apache.maven.model.DeploymentRepository
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
,InputLocationTracker
public class DeploymentRepository extends Repository implements java.io.Serializable, java.lang.Cloneable
Repository contains the information needed for deploying to the remote repository.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private boolean
uniqueVersion
Whether to assign snapshots a unique version comprised of the timestamp and build number, or to use the same version each time.
-
Constructor Summary
Constructors Constructor Description DeploymentRepository()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeploymentRepository
clone()
Method clone.boolean
isUniqueVersion()
Get whether to assign snapshots a unique version comprised of the timestamp and build number, or to use the same version each time.void
setUniqueVersion(boolean uniqueVersion)
Set whether to assign snapshots a unique version comprised of the timestamp and build number, or to use the same version each time.-
Methods inherited from class org.apache.maven.model.Repository
getReleases, getSnapshots, setReleases, setSnapshots
-
Methods inherited from class org.apache.maven.model.RepositoryBase
equals, getId, getLayout, getLocation, getName, getUrl, hashCode, setId, setLayout, setLocation, setName, setOtherLocation, setUrl, toString
-
-
-
-
Method Detail
-
clone
public DeploymentRepository clone()
Method clone.- Overrides:
clone
in classRepository
- Returns:
- DeploymentRepository
-
isUniqueVersion
public boolean isUniqueVersion()
Get whether to assign snapshots a unique version comprised of the timestamp and build number, or to use the same version each time.- Returns:
- boolean
-
setUniqueVersion
public void setUniqueVersion(boolean uniqueVersion)
Set whether to assign snapshots a unique version comprised of the timestamp and build number, or to use the same version each time.- Parameters:
uniqueVersion
- a uniqueVersion object.
-
-