Interface ArtifactDeployer
-
public interface ArtifactDeployer
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringROLE
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voiddeploy(java.io.File source, Artifact artifact, ArtifactRepository deploymentRepository, ArtifactRepository localRepository)Deploy an artifact from a particular file.voiddeploy(java.lang.String basedir, java.lang.String finalName, Artifact artifact, ArtifactRepository deploymentRepository, ArtifactRepository localRepository)Deprecated.to be removed before 2.0 after the instlal/deploy plugins use the alternate method
-
-
-
Method Detail
-
deploy
void deploy(java.lang.String basedir, java.lang.String finalName, Artifact artifact, ArtifactRepository deploymentRepository, ArtifactRepository localRepository) throws ArtifactDeploymentExceptionDeprecated.to be removed before 2.0 after the instlal/deploy plugins use the alternate methodDeploy an artifact from a particular directory. The artifact handler is used to determine the filename of the source file.- Parameters:
basedir- the directory where the artifact is storedfinalName- the name of the artifact sans extensionartifact- the artifact definitiondeploymentRepository- the repository to deploy tolocalRepository- the local repository to install into- Throws:
ArtifactDeploymentException- if an error occurred deploying the artifact
-
deploy
void deploy(java.io.File source, Artifact artifact, ArtifactRepository deploymentRepository, ArtifactRepository localRepository) throws ArtifactDeploymentExceptionDeploy an artifact from a particular file.- Parameters:
source- the file to deployartifact- the artifact definitiondeploymentRepository- the repository to deploy tolocalRepository- the local repository to install into- Throws:
ArtifactDeploymentException- if an error occurred deploying the artifact
-
-