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