org.eclipse.aether.resolution.ArtifactDescriptorResult.addRelocation()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(102)

本文整理了Java中org.eclipse.aether.resolution.ArtifactDescriptorResult.addRelocation()方法的一些代码示例,展示了ArtifactDescriptorResult.addRelocation()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ArtifactDescriptorResult.addRelocation()方法的具体详情如下:
包路径:org.eclipse.aether.resolution.ArtifactDescriptorResult
类名称:ArtifactDescriptorResult
方法名:addRelocation

ArtifactDescriptorResult.addRelocation介绍

[英]Records the specified relocation hop while locating the artifact descriptor.
[中]在定位工件描述符时记录指定的重新定位跃点。

代码示例

代码示例来源:origin: apache/maven

result.addRelocation( a );
a =
  new RelocatedArtifact( a, relocation.getGroupId(), relocation.getArtifactId(),

代码示例来源:origin: org.eclipse.aether/aether-test-util

if ( data.getRelocation() != null )
  result.addRelocation( artifact );
  artifact = data.getRelocation();

代码示例来源:origin: com.atlassian.sdk/ap3-aether-maven-provider

result.addRelocation( artifact );
artifact =
    new RelocatedArtifact( artifact, relocation.getGroupId(), relocation.getArtifactId(),

代码示例来源:origin: io.tesla.maven/maven-aether-provider

result.addRelocation( artifact );
artifact =
  new RelocatedArtifact( artifact, relocation.getGroupId(), relocation.getArtifactId(),

代码示例来源:origin: org.apache.maven/maven-aether-provider

result.addRelocation( a );
a =
  new RelocatedArtifact( a, relocation.getGroupId(), relocation.getArtifactId(),

代码示例来源:origin: org.apache.maven/maven-resolver-provider

result.addRelocation( a );
a =
  new RelocatedArtifact( a, relocation.getGroupId(), relocation.getArtifactId(),

相关文章

微信公众号

最新文章

更多