Package org.apache.maven.plugin.deploy
Class DeployRequest
- java.lang.Object
-
- org.apache.maven.plugin.deploy.DeployRequest
-
class DeployRequest extends java.lang.Object- Since:
- 2.8.1
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.StringaltDeploymentRepositoryprivate java.lang.StringaltReleaseDeploymentRepositoryprivate java.lang.StringaltSnapshotDeploymentRepositoryprivate org.apache.maven.project.MavenProjectprojectprivate intretryFailedDeploymentCountprivate booleanupdateReleaseInfo
-
Constructor Summary
Constructors Constructor Description DeployRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAltDeploymentRepository()java.lang.StringgetAltReleaseDeploymentRepository()java.lang.StringgetAltSnapshotDeploymentRepository()org.apache.maven.project.MavenProjectgetProject()intgetRetryFailedDeploymentCount()booleanisUpdateReleaseInfo()DeployRequestsetAltDeploymentRepository(java.lang.String altDeploymentRepository)DeployRequestsetAltReleaseDeploymentRepository(java.lang.String altReleaseDeploymentRepository)DeployRequestsetAltSnapshotDeploymentRepository(java.lang.String altSnapshotDeploymentRepository)DeployRequestsetProject(org.apache.maven.project.MavenProject project)DeployRequestsetRetryFailedDeploymentCount(int retryFailedDeploymentCount)DeployRequestsetUpdateReleaseInfo(boolean updateReleaseInfo)
-
-
-
Field Detail
-
updateReleaseInfo
private boolean updateReleaseInfo
-
retryFailedDeploymentCount
private int retryFailedDeploymentCount
-
project
private org.apache.maven.project.MavenProject project
-
altDeploymentRepository
private java.lang.String altDeploymentRepository
-
altSnapshotDeploymentRepository
private java.lang.String altSnapshotDeploymentRepository
-
altReleaseDeploymentRepository
private java.lang.String altReleaseDeploymentRepository
-
-
Method Detail
-
isUpdateReleaseInfo
public boolean isUpdateReleaseInfo()
- Returns:
- the updateReleaseInfo
-
setUpdateReleaseInfo
public DeployRequest setUpdateReleaseInfo(boolean updateReleaseInfo)
- Parameters:
updateReleaseInfo- the updateReleaseInfo to set
-
getRetryFailedDeploymentCount
public int getRetryFailedDeploymentCount()
- Returns:
- the retryFailedDeploymentCount
-
setRetryFailedDeploymentCount
public DeployRequest setRetryFailedDeploymentCount(int retryFailedDeploymentCount)
- Parameters:
retryFailedDeploymentCount- the retryFailedDeploymentCount to set
-
getProject
public org.apache.maven.project.MavenProject getProject()
- Returns:
- the project
-
setProject
public DeployRequest setProject(org.apache.maven.project.MavenProject project)
- Parameters:
project- the project to set
-
getAltDeploymentRepository
public java.lang.String getAltDeploymentRepository()
- Returns:
- the altDeploymentRepository
-
setAltDeploymentRepository
public DeployRequest setAltDeploymentRepository(java.lang.String altDeploymentRepository)
- Parameters:
altDeploymentRepository- the altDeploymentRepository to set
-
getAltSnapshotDeploymentRepository
public java.lang.String getAltSnapshotDeploymentRepository()
- Returns:
- the altSnapshotDeploymentRepository
-
setAltSnapshotDeploymentRepository
public DeployRequest setAltSnapshotDeploymentRepository(java.lang.String altSnapshotDeploymentRepository)
- Parameters:
altSnapshotDeploymentRepository- the altSnapshotDeploymentRepository to set
-
getAltReleaseDeploymentRepository
public java.lang.String getAltReleaseDeploymentRepository()
- Returns:
- the altReleaseDeploymentRepository
-
setAltReleaseDeploymentRepository
public DeployRequest setAltReleaseDeploymentRepository(java.lang.String altReleaseDeploymentRepository)
- Parameters:
altReleaseDeploymentRepository- the altReleaseDeploymentRepository to set
-
-