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  import org.apache.maven.artifact.Artifact;
23  import org.apache.maven.artifact.deployer.ArtifactDeploymentException;
24  import org.apache.maven.artifact.installer.ArtifactInstallationException;
25  import org.apache.maven.artifact.repository.ArtifactRepository;
26  import org.apache.maven.artifact.repository.RepositoryRequest;
27  import org.apache.maven.artifact.resolver.ArtifactNotFoundException;
28  import org.apache.maven.artifact.resolver.ArtifactResolutionException;
29  import org.codehaus.plexus.component.annotations.Component;
30  import org.codehaus.plexus.component.annotations.Requirement;
31  
32  /**
33   * @author Jason van Zyl
34   */
35  @Component(role = ArtifactTransformationManager.class)
36  public class DefaultArtifactTransformationManager implements ArtifactTransformationManager {
37      @Requirement(
38              role = ArtifactTransformation.class,
39              hints = {"release", "latest", "snapshot"})
40      private List<ArtifactTransformation> artifactTransformations;
41  
42      public void transformForResolve(Artifact artifact, RepositoryRequest request)
43              throws ArtifactResolutionException, ArtifactNotFoundException {
44          for (ArtifactTransformation transform : artifactTransformations) {
45              transform.transformForResolve(artifact, request);
46          }
47      }
48  
49      public void transformForResolve(
50              Artifact artifact, List<ArtifactRepository> remoteRepositories, ArtifactRepository localRepository)
51              throws ArtifactResolutionException, ArtifactNotFoundException {
52          for (ArtifactTransformation transform : artifactTransformations) {
53              transform.transformForResolve(artifact, remoteRepositories, localRepository);
54          }
55      }
56  
57      public void transformForInstall(Artifact artifact, ArtifactRepository localRepository)
58              throws ArtifactInstallationException {
59          for (ArtifactTransformation transform : artifactTransformations) {
60              transform.transformForInstall(artifact, localRepository);
61          }
62      }
63  
64      public void transformForDeployment(
65              Artifact artifact, ArtifactRepository remoteRepository, ArtifactRepository localRepository)
66              throws ArtifactDeploymentException {
67          for (ArtifactTransformation transform : artifactTransformations) {
68              transform.transformForDeployment(artifact, remoteRepository, localRepository);
69          }
70      }
71  
72      public List<ArtifactTransformation> getArtifactTransformations() {
73          return artifactTransformations;
74      }
75  }