View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.maven.repository.legacy.resolver.transform;
20  
21  import java.util.List;
22  
23  import org.apache.maven.artifact.Artifact;
24  import org.apache.maven.artifact.deployer.ArtifactDeploymentException;
25  import org.apache.maven.artifact.installer.ArtifactInstallationException;
26  import org.apache.maven.artifact.repository.ArtifactRepository;
27  import org.apache.maven.artifact.repository.RepositoryRequest;
28  import org.apache.maven.artifact.resolver.ArtifactNotFoundException;
29  import org.apache.maven.artifact.resolver.ArtifactResolutionException;
30  import org.codehaus.plexus.component.annotations.Component;
31  import org.codehaus.plexus.component.annotations.Requirement;
32  
33  /**
34   * @author Jason van Zyl
35   */
36  @Component(role = ArtifactTransformationManager.class)
37  public class DefaultArtifactTransformationManager implements ArtifactTransformationManager {
38      @Requirement(
39              role = ArtifactTransformation.class,
40              hints = {"release", "latest", "snapshot"})
41      private List<ArtifactTransformation> artifactTransformations;
42  
43      public void transformForResolve(Artifact artifact, RepositoryRequest request)
44              throws ArtifactResolutionException, ArtifactNotFoundException {
45          for (ArtifactTransformation transform : artifactTransformations) {
46              transform.transformForResolve(artifact, request);
47          }
48      }
49  
50      public void transformForResolve(
51              Artifact artifact, List<ArtifactRepository> remoteRepositories, ArtifactRepository localRepository)
52              throws ArtifactResolutionException, ArtifactNotFoundException {
53          for (ArtifactTransformation transform : artifactTransformations) {
54              transform.transformForResolve(artifact, remoteRepositories, localRepository);
55          }
56      }
57  
58      public void transformForInstall(Artifact artifact, ArtifactRepository localRepository)
59              throws ArtifactInstallationException {
60          for (ArtifactTransformation transform : artifactTransformations) {
61              transform.transformForInstall(artifact, localRepository);
62          }
63      }
64  
65      public void transformForDeployment(
66              Artifact artifact, ArtifactRepository remoteRepository, ArtifactRepository localRepository)
67              throws ArtifactDeploymentException {
68          for (ArtifactTransformation transform : artifactTransformations) {
69              transform.transformForDeployment(artifact, remoteRepository, localRepository);
70          }
71      }
72  
73      public List<ArtifactTransformation> getArtifactTransformations() {
74          return artifactTransformations;
75      }
76  }