Class SnapshotTransformation

    • Method Summary

      All Methods Static 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)  
      java.lang.String getDeploymentTimestamp()  
      static java.text.DateFormat getUtcDateFormatter()  
      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.codehaus.plexus.logging.AbstractLogEnabled

        enableLogging, getLogger, setupLogger, setupLogger, setupLogger
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • SnapshotTransformation

        public SnapshotTransformation()
    • 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
        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
      • 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)
                                    throws ArtifactDeploymentException
        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 to
        localRepository - the local repository
        Throws:
        ArtifactDeploymentException
      • getDeploymentTimestamp

        public java.lang.String getDeploymentTimestamp()
      • constructVersion

        protected java.lang.String constructVersion​(org.apache.maven.artifact.repository.metadata.Versioning versioning,
                                                    java.lang.String baseVersion)
        Specified by:
        constructVersion in class AbstractVersionTransformation
      • getUtcDateFormatter

        public static java.text.DateFormat getUtcDateFormatter()