org.apache.maven.artifact.transform
Class DefaultArtifactTransformationManager
java.lang.Object
org.apache.maven.artifact.transform.DefaultArtifactTransformationManager
- All Implemented Interfaces:
- ArtifactTransformationManager
public class DefaultArtifactTransformationManager
- extends java.lang.Object
- implements ArtifactTransformationManager
- Author:
- Jason van Zyl
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DefaultArtifactTransformationManager
public DefaultArtifactTransformationManager()
transformForResolve
public void transformForResolve(Artifact artifact,
java.util.List<ArtifactRepository> remoteRepositories,
ArtifactRepository localRepository)
throws ArtifactResolutionException,
ArtifactNotFoundException
- Description copied from interface:
ArtifactTransformationManager
- Take 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:
transformForResolve in interface ArtifactTransformationManager
- Parameters:
artifact - Artifact to be transformed.remoteRepositories - the repositories to checklocalRepository - the local repository
- Throws:
ArtifactResolutionException
ArtifactNotFoundException
transformForInstall
public void transformForInstall(Artifact artifact,
ArtifactRepository localRepository)
throws ArtifactInstallationException
- Description copied from interface:
ArtifactTransformationManager
- Take 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:
transformForInstall in interface ArtifactTransformationManager
- 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:
ArtifactTransformationManager
- Take 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:
transformForDeployment in interface ArtifactTransformationManager
- Parameters:
artifact - Artifact to be transformed.remoteRepository - the repository to deploy tolocalRepository - the local repository the metadata is stored in
- Throws:
ArtifactDeploymentException
getArtifactTransformations
public java.util.List getArtifactTransformations()
- Specified by:
getArtifactTransformations in interface ArtifactTransformationManager
Copyright © 2001-2009 The Apache Software Foundation. All Rights Reserved.