Interface ArtifactDeployer
- All Known Implementing Classes:
DefaultArtifactDeployer
Deprecated.
ArtifactDeployer
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
deploy
(File source, Artifact artifact, ArtifactRepository deploymentRepository, ArtifactRepository localRepository) Deprecated.Deploy an artifact from a particular file.void
deploy
(String basedir, String finalName, Artifact artifact, ArtifactRepository deploymentRepository, ArtifactRepository localRepository) Deprecated.to be removed before 2.0 after the install/deploy plugins use the alternate method
-
Field Details
-
ROLE
Deprecated.
-
-
Method Details
-
deploy
@Deprecated void deploy(String basedir, String finalName, Artifact artifact, ArtifactRepository deploymentRepository, ArtifactRepository localRepository) throws ArtifactDeploymentException Deprecated.to be removed before 2.0 after the install/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 without 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(File source, Artifact artifact, ArtifactRepository deploymentRepository, ArtifactRepository localRepository) throws ArtifactDeploymentException Deprecated.Deploy 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
-