@Component(role=ArtifactDeployer.class, instantiationStrategy="per-lookup") public class DefaultArtifactDeployer extends org.codehaus.plexus.logging.AbstractLogEnabled implements ArtifactDeployer
ROLE| Constructor and Description |
|---|
DefaultArtifactDeployer() |
| Modifier and Type | Method and Description |
|---|---|
void |
deploy(java.io.File source,
org.apache.maven.artifact.Artifact artifact,
org.apache.maven.artifact.repository.ArtifactRepository deploymentRepository,
org.apache.maven.artifact.repository.ArtifactRepository localRepository)
Deploy an artifact from a particular file.
|
void |
deploy(java.lang.String basedir,
java.lang.String finalName,
org.apache.maven.artifact.Artifact artifact,
org.apache.maven.artifact.repository.ArtifactRepository deploymentRepository,
org.apache.maven.artifact.repository.ArtifactRepository localRepository)
Deprecated.
we want to use the artifact method only, and ensure artifact.file is set
correctly.
|
@Deprecated
public void deploy(java.lang.String basedir,
java.lang.String finalName,
org.apache.maven.artifact.Artifact artifact,
org.apache.maven.artifact.repository.ArtifactRepository deploymentRepository,
org.apache.maven.artifact.repository.ArtifactRepository localRepository)
throws ArtifactDeploymentException
ArtifactDeployerdeploy in interface ArtifactDeployerbasedir - 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 intoArtifactDeploymentException - if an error occurred deploying the artifactpublic void deploy(java.io.File source,
org.apache.maven.artifact.Artifact artifact,
org.apache.maven.artifact.repository.ArtifactRepository deploymentRepository,
org.apache.maven.artifact.repository.ArtifactRepository localRepository)
throws ArtifactDeploymentException
ArtifactDeployerdeploy in interface ArtifactDeployersource - the file to deployartifact - the artifact definitiondeploymentRepository - the repository to deploy tolocalRepository - the local repository to install intoArtifactDeploymentException - if an error occurred deploying the artifact