List of usage examples for org.apache.maven.repository.legacy.resolver.transform ArtifactTransformation transformForDeployment
void transformForDeployment(Artifact artifact, ArtifactRepository remoteRepository, ArtifactRepository localRepository) throws ArtifactDeploymentException;
From source file:hudson.maven.artifact.transform.DefaultArtifactTransformationManager.java
License:Apache License
public void transformForDeployment(Artifact artifact, ArtifactRepository remoteRepository, ArtifactRepository localRepository) throws ArtifactDeploymentException { for (ArtifactTransformation transform : artifactTransformations) { transform.transformForDeployment(artifact, remoteRepository, localRepository); }/*from w w w .j a v a2s.com*/ }