Class LatestArtifactTransformation
- java.lang.Object
-
- org.codehaus.plexus.logging.AbstractLogEnabled
-
- org.apache.maven.artifact.transform.AbstractVersionTransformation
-
- org.apache.maven.artifact.transform.LatestArtifactTransformation
-
- All Implemented Interfaces:
ArtifactTransformation,org.codehaus.plexus.logging.LogEnabled
public class LatestArtifactTransformation extends AbstractVersionTransformation
-
-
Field Summary
-
Fields inherited from class org.apache.maven.artifact.transform.AbstractVersionTransformation
repositoryMetadataManager, wagonManager
-
Fields inherited from interface org.apache.maven.artifact.transform.ArtifactTransformation
ROLE
-
-
Constructor Summary
Constructors Constructor Description LatestArtifactTransformation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.StringconstructVersion(org.apache.maven.artifact.repository.metadata.Versioning versioning, java.lang.String baseVersion)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.-
Methods inherited from class org.apache.maven.artifact.transform.AbstractVersionTransformation
resolveVersion
-
-
-
-
Method Detail
-
transformForResolve
public void transformForResolve(Artifact artifact, java.util.List<ArtifactRepository> remoteRepositories, ArtifactRepository localRepository) throws ArtifactResolutionException, ArtifactNotFoundException
Description copied from interface:ArtifactTransformationTake in a artifact and return the transformed artifact for locating in the remote repository. If no transformation has occured the original artifact is returned.- Parameters:
artifact- Artifact to be transformed.remoteRepositories- the repositories to checklocalRepository- the local repository- Throws:
ArtifactResolutionExceptionArtifactNotFoundException
-
transformForInstall
public void transformForInstall(Artifact artifact, ArtifactRepository localRepository)
Description copied from interface:ArtifactTransformationTake in a artifact and return the transformed artifact for locating in the local repository. If no transformation has occured the original artifact is returned.- Parameters:
artifact- Artifact to be transformed.localRepository- the local repository it will be stored in
-
transformForDeployment
public void transformForDeployment(Artifact artifact, ArtifactRepository remoteRepository, ArtifactRepository localRepository)
Description copied from interface:ArtifactTransformationTake in a artifact and return the transformed artifact for distributing toa remote repository. If no transformation has occured the original artifact is returned.- Parameters:
artifact- Artifact to be transformed.remoteRepository- the repository to deploy tolocalRepository- the local repository
-
constructVersion
protected java.lang.String constructVersion(org.apache.maven.artifact.repository.metadata.Versioning versioning, java.lang.String baseVersion)- Specified by:
constructVersionin classAbstractVersionTransformation
-
-