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 version RELEASE to the appropriate release version from the remote repository.
Author:
Brett Porter
  • Constructor Details

    • ReleaseArtifactTransformation

      public ReleaseArtifactTransformation()
  • Method Details

    • transformForResolve

      public void transformForResolve(Artifact artifact, RepositoryRequest request) throws ArtifactResolutionException, ArtifactNotFoundException
      Description copied from interface: ArtifactTransformation
      Take in an 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:
      ArtifactResolutionException
      ArtifactNotFoundException
    • transformForInstall

      public void transformForInstall(Artifact artifact, ArtifactRepository localRepository)
      Description copied from interface: ArtifactTransformation
      Take in an 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(Artifact artifact, ArtifactRepository remoteRepository, ArtifactRepository localRepository)
      Description copied from interface: ArtifactTransformation
      Take in an 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 to
      localRepository - the local repository
    • constructVersion

      protected String constructVersion(Versioning versioning, String baseVersion)
      Specified by:
      constructVersion in class AbstractVersionTransformation