Class DefaultArtifactTransformationManager
java.lang.Object
org.apache.maven.repository.legacy.resolver.transform.DefaultArtifactTransformationManager
- All Implemented Interfaces:
ArtifactTransformationManager
@Component(role=ArtifactTransformationManager.class)
public class DefaultArtifactTransformationManager
extends Object
implements ArtifactTransformationManager
- Author:
- Jason van Zyl
-
Field Summary
Fields inherited from interface ArtifactTransformationManager
ROLE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidtransformForDeployment(org.apache.maven.artifact.Artifact artifact, org.apache.maven.artifact.repository.ArtifactRepository remoteRepository, org.apache.maven.artifact.repository.ArtifactRepository localRepository) Take in a artifact and return the transformed artifact for distributing to a remote repository.voidtransformForInstall(org.apache.maven.artifact.Artifact artifact, org.apache.maven.artifact.repository.ArtifactRepository localRepository) Take in a artifact and return the transformed artifact for locating in the local repository.voidtransformForResolve(org.apache.maven.artifact.Artifact artifact, List<org.apache.maven.artifact.repository.ArtifactRepository> remoteRepositories, org.apache.maven.artifact.repository.ArtifactRepository localRepository) Take in a artifact and return the transformed artifact for locating in the remote repository.voidtransformForResolve(org.apache.maven.artifact.Artifact artifact, org.apache.maven.artifact.repository.RepositoryRequest request) Take in a artifact and return the transformed artifact for locating in the remote repository.
-
Constructor Details
-
DefaultArtifactTransformationManager
public DefaultArtifactTransformationManager()
-
-
Method Details
-
transformForResolve
public void transformForResolve(org.apache.maven.artifact.Artifact artifact, org.apache.maven.artifact.repository.RepositoryRequest request) throws org.apache.maven.artifact.resolver.ArtifactResolutionException, org.apache.maven.artifact.resolver.ArtifactNotFoundException Description copied from interface:ArtifactTransformationManagerTake in a artifact and return the transformed artifact for locating in the remote repository. If no transformation has occurred the original artifact is returned.- Specified by:
transformForResolvein interfaceArtifactTransformationManager- Parameters:
artifact- Artifact to be transformed.request- the repositories to check- Throws:
org.apache.maven.artifact.resolver.ArtifactResolutionExceptionorg.apache.maven.artifact.resolver.ArtifactNotFoundException
-
transformForResolve
public void transformForResolve(org.apache.maven.artifact.Artifact artifact, List<org.apache.maven.artifact.repository.ArtifactRepository> remoteRepositories, org.apache.maven.artifact.repository.ArtifactRepository localRepository) throws org.apache.maven.artifact.resolver.ArtifactResolutionException, org.apache.maven.artifact.resolver.ArtifactNotFoundException Description copied from interface:ArtifactTransformationManagerTake in a artifact and return the transformed artifact for locating in the remote repository. If no transformation has occurred the original artifact is returned.- Specified by:
transformForResolvein interfaceArtifactTransformationManager- Parameters:
artifact- Artifact to be transformed.remoteRepositories- the repositories to checklocalRepository- the local repository- Throws:
org.apache.maven.artifact.resolver.ArtifactResolutionExceptionorg.apache.maven.artifact.resolver.ArtifactNotFoundException
-
transformForInstall
public void transformForInstall(org.apache.maven.artifact.Artifact artifact, org.apache.maven.artifact.repository.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 occurred 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(org.apache.maven.artifact.Artifact artifact, org.apache.maven.artifact.repository.ArtifactRepository remoteRepository, org.apache.maven.artifact.repository.ArtifactRepository localRepository) throws ArtifactDeploymentException Description copied from interface:ArtifactTransformationManagerTake in a artifact and return the transformed artifact for distributing to a remote repository. If no transformation has occurred 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
-
getArtifactTransformations
- Specified by:
getArtifactTransformationsin interfaceArtifactTransformationManager
-