Class ReleaseArtifactTransformation
- java.lang.Object
-
- org.codehaus.plexus.logging.AbstractLogEnabled
-
- org.apache.maven.repository.legacy.resolver.transform.AbstractVersionTransformation
-
- org.apache.maven.repository.legacy.resolver.transform.ReleaseArtifactTransformation
-
- All Implemented Interfaces:
ArtifactTransformation
,org.codehaus.plexus.logging.LogEnabled
@Component(role=ArtifactTransformation.class, hint="release") public class ReleaseArtifactTransformation extends AbstractVersionTransformation
Change the versionRELEASE
to the appropriate release version from the remote repository.- Author:
- Brett Porter
-
-
Field Summary
-
Fields inherited from class org.apache.maven.repository.legacy.resolver.transform.AbstractVersionTransformation
repositoryMetadataManager, wagonManager
-
Fields inherited from interface org.apache.maven.repository.legacy.resolver.transform.ArtifactTransformation
ROLE
-
-
Constructor Summary
Constructors Constructor Description ReleaseArtifactTransformation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.String
constructVersion(org.apache.maven.artifact.repository.metadata.Versioning versioning, java.lang.String baseVersion)
void
transformForDeployment(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.void
transformForInstall(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.void
transformForResolve(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.-
Methods inherited from class org.apache.maven.repository.legacy.resolver.transform.AbstractVersionTransformation
resolveVersion, resolveVersion, transformForResolve
-
-
-
-
Method Detail
-
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:ArtifactTransformation
Take 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.ArtifactResolutionException
org.apache.maven.artifact.resolver.ArtifactNotFoundException
-
transformForInstall
public void transformForInstall(org.apache.maven.artifact.Artifact artifact, org.apache.maven.artifact.repository.ArtifactRepository localRepository)
Description copied from interface:ArtifactTransformation
Take 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
-
transformForDeployment
public void transformForDeployment(org.apache.maven.artifact.Artifact artifact, org.apache.maven.artifact.repository.ArtifactRepository remoteRepository, org.apache.maven.artifact.repository.ArtifactRepository localRepository)
Description copied from interface:ArtifactTransformation
Take 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
-
constructVersion
protected java.lang.String constructVersion(org.apache.maven.artifact.repository.metadata.Versioning versioning, java.lang.String baseVersion)
- Specified by:
constructVersion
in classAbstractVersionTransformation
-
-