Interface ArtifactTransformation
-
- All Known Implementing Classes:
AbstractVersionTransformation,LatestArtifactTransformation,ReleaseArtifactTransformation,SnapshotTransformation
public interface ArtifactTransformation- Author:
- Jason van Zyl
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringROLE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidtransformForDeployment(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 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, java.util.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.
-
-
-
Method Detail
-
transformForResolve
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.ArtifactNotFoundExceptionTake in a artifact and return the transformed artifact for locating in the remote repository. If no transformation has occurred the original artifact is returned.- Parameters:
artifact- Artifact to be transformed.request- the repositories to check- Throws:
org.apache.maven.artifact.resolver.ArtifactResolutionExceptionorg.apache.maven.artifact.resolver.ArtifactNotFoundException
-
transformForResolve
void transformForResolve(org.apache.maven.artifact.Artifact artifact, java.util.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.ArtifactNotFoundExceptionTake in a artifact and return the transformed artifact for locating in the remote repository. If no transformation has occurred the original artifact is returned.- 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
void transformForInstall(org.apache.maven.artifact.Artifact artifact, org.apache.maven.artifact.repository.ArtifactRepository localRepository) throws ArtifactInstallationExceptionTake in a artifact and return the transformed artifact for locating in the local repository. If no transformation has occurred the original artifact is returned.- Parameters:
artifact- Artifact to be transformed.localRepository- the local repository it will be stored in- Throws:
ArtifactInstallationException
-
transformForDeployment
void transformForDeployment(org.apache.maven.artifact.Artifact artifact, org.apache.maven.artifact.repository.ArtifactRepository remoteRepository, org.apache.maven.artifact.repository.ArtifactRepository localRepository) throws ArtifactDeploymentExceptionTake in a artifact and return the transformed artifact for distributing to remote repository. If no transformation has occurred the original artifact is returned.- Parameters:
artifact- Artifact to be transformed.remoteRepository- the repository to deploy tolocalRepository- the local repository- Throws:
ArtifactDeploymentException
-
-