Interface ArtifactTransformation
- All Known Implementing Classes:
AbstractVersionTransformation
,LatestArtifactTransformation
,ReleaseArtifactTransformation
,SnapshotTransformation
Deprecated.
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
transformForDeployment
(Artifact artifact, ArtifactRepository remoteRepository, ArtifactRepository localRepository) Deprecated.Take in an artifact and return the transformed artifact for distributing to remote repository.void
transformForInstall
(Artifact artifact, ArtifactRepository localRepository) Deprecated.Take in an artifact and return the transformed artifact for locating in the local repository.void
transformForResolve
(Artifact artifact, List<ArtifactRepository> remoteRepositories, ArtifactRepository localRepository) Deprecated.Take in an artifact and return the transformed artifact for locating in the remote repository.void
transformForResolve
(Artifact artifact, RepositoryRequest request) Deprecated.Take in an artifact and return the transformed artifact for locating in the remote repository.
-
Field Details
-
ROLE
Deprecated.
-
-
Method Details
-
transformForResolve
void transformForResolve(Artifact artifact, RepositoryRequest request) throws ArtifactResolutionException, ArtifactNotFoundException Deprecated.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
-
transformForResolve
void transformForResolve(Artifact artifact, List<ArtifactRepository> remoteRepositories, ArtifactRepository localRepository) throws ArtifactResolutionException, ArtifactNotFoundException Deprecated.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.remoteRepositories
- the repositories to checklocalRepository
- the local repository- Throws:
ArtifactResolutionException
ArtifactNotFoundException
-
transformForInstall
void transformForInstall(Artifact artifact, ArtifactRepository localRepository) throws ArtifactInstallationException Deprecated.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- Throws:
ArtifactInstallationException
-
transformForDeployment
void transformForDeployment(Artifact artifact, ArtifactRepository remoteRepository, ArtifactRepository localRepository) throws ArtifactDeploymentException Deprecated.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 tolocalRepository
- the local repository- Throws:
ArtifactDeploymentException
-