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.internal.impl.resolver.relocation;
20  
21  import org.apache.maven.api.di.Named;
22  import org.apache.maven.api.di.Priority;
23  import org.apache.maven.api.di.Singleton;
24  import org.apache.maven.api.model.DistributionManagement;
25  import org.apache.maven.api.model.Model;
26  import org.apache.maven.api.model.Relocation;
27  import org.apache.maven.internal.impl.resolver.MavenArtifactRelocationSource;
28  import org.apache.maven.internal.impl.resolver.RelocatedArtifact;
29  import org.eclipse.aether.RepositorySystemSession;
30  import org.eclipse.aether.artifact.Artifact;
31  import org.eclipse.aether.resolution.ArtifactDescriptorResult;
32  import org.slf4j.Logger;
33  import org.slf4j.LoggerFactory;
34  
35  /**
36   * Relocation source from standard distribution management. This is the "one and only" relocation implementation that
37   * existed in Maven 3 land, uses POM distributionManagement/relocation.
38   * <p>
39   * Note: this component should kick-in last regarding relocations.
40   *
41   * @since 4.0.0
42   */
43  @Singleton
44  @Named(DistributionManagementArtifactRelocationSource.NAME)
45  @Priority(5)
46  @SuppressWarnings("checkstyle:MagicNumber")
47  public final class DistributionManagementArtifactRelocationSource implements MavenArtifactRelocationSource {
48      public static final String NAME = "distributionManagement";
49      private static final Logger LOGGER = LoggerFactory.getLogger(DistributionManagementArtifactRelocationSource.class);
50  
51      @Override
52      public Artifact relocatedTarget(
53              RepositorySystemSession session, ArtifactDescriptorResult artifactDescriptorResult, Model model) {
54          DistributionManagement distMgmt = model.getDistributionManagement();
55          if (distMgmt != null) {
56              Relocation relocation = distMgmt.getRelocation();
57              if (relocation != null) {
58                  Artifact result = new RelocatedArtifact(
59                          artifactDescriptorResult.getRequest().getArtifact(),
60                          relocation.getGroupId(),
61                          relocation.getArtifactId(),
62                          null,
63                          null,
64                          relocation.getVersion(),
65                          relocation.getMessage());
66                  LOGGER.debug(
67                          "The artifact {} has been relocated to {}: {}",
68                          artifactDescriptorResult.getRequest().getArtifact(),
69                          result,
70                          relocation.getMessage());
71                  return result;
72              }
73          }
74          return null;
75      }
76  }