1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
38
39
40
41
42
43
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 }