Class DefaultArtifactTransformationManager
- java.lang.Object
-
- org.apache.maven.artifact.transform.DefaultArtifactTransformationManager
-
- All Implemented Interfaces:
ArtifactTransformationManager,org.codehaus.plexus.personality.plexus.lifecycle.phase.Initializable
public class DefaultArtifactTransformationManager extends java.lang.Object implements ArtifactTransformationManager, org.codehaus.plexus.personality.plexus.lifecycle.phase.Initializable
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<ArtifactTransformation>artifactTransformations-
Fields inherited from interface org.apache.maven.artifact.transform.ArtifactTransformationManager
ROLE
-
-
Constructor Summary
Constructors Constructor Description DefaultArtifactTransformationManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidinitialize()voidtransformForDeployment(Artifact artifact, ArtifactRepository remoteRepository, ArtifactRepository localRepository)Take in a artifact and return the transformed artifact for distributing toa remote repository.voidtransformForInstall(Artifact artifact, ArtifactRepository localRepository)Take in a artifact and return the transformed artifact for locating in the local repository.voidtransformForResolve(Artifact artifact, java.util.List<ArtifactRepository> remoteRepositories, ArtifactRepository localRepository)Take in a artifact and return the transformed artifact for locating in the remote repository.
-
-
-
Field Detail
-
artifactTransformations
private java.util.List<ArtifactTransformation> artifactTransformations
-
-
Method Detail
-
initialize
public void initialize() throws org.codehaus.plexus.personality.plexus.lifecycle.phase.InitializationException- Specified by:
initializein interfaceorg.codehaus.plexus.personality.plexus.lifecycle.phase.Initializable- Throws:
org.codehaus.plexus.personality.plexus.lifecycle.phase.InitializationException
-
transformForResolve
public void transformForResolve(Artifact artifact, java.util.List<ArtifactRepository> remoteRepositories, ArtifactRepository localRepository) throws ArtifactResolutionException, ArtifactNotFoundException
Description copied from interface:ArtifactTransformationManagerTake in a artifact and return the transformed artifact for locating in the remote repository. If no transformation has occured the original artifact is returned.- Specified by:
transformForResolvein interfaceArtifactTransformationManager- Parameters:
artifact- Artifact to be transformed.remoteRepositories- the repositories to checklocalRepository- the local repository- Throws:
ArtifactResolutionExceptionArtifactNotFoundException
-
transformForInstall
public void transformForInstall(Artifact artifact, ArtifactRepository localRepository) throws ArtifactInstallationException
Description copied from interface:ArtifactTransformationManagerTake in a artifact and return the transformed artifact for locating in the local repository. If no transformation has occured the original artifact is returned.- Specified by:
transformForInstallin interfaceArtifactTransformationManager- Parameters:
artifact- Artifact to be transformed.localRepository- the local repository it will be stored in- Throws:
ArtifactInstallationException
-
transformForDeployment
public void transformForDeployment(Artifact artifact, ArtifactRepository remoteRepository, ArtifactRepository localRepository) throws ArtifactDeploymentException
Description copied from interface:ArtifactTransformationManagerTake in a artifact and return the transformed artifact for distributing toa remote repository. If no transformation has occured the original artifact is returned.- Specified by:
transformForDeploymentin interfaceArtifactTransformationManager- Parameters:
artifact- Artifact to be transformed.remoteRepository- the repository to deploy tolocalRepository- the local repository the metadata is stored in- Throws:
ArtifactDeploymentException
-
-