有一个困惑 ,Nexus Repository Manager 配置了多个 repo ( repository ) ,每一个对应了不同的路径。
项目构建中的 jar 包可能依赖其中多个 repo,该如何配置 settings.xml ,使得项目构建过程中会自动搜索 nexus 上的所有 repo。
Nexus 界面截图:
可以看到其中有多个 repo,每个 repo 的 repo path 不一致。
例如,现在做了如下配置:
<profiles>
<profile>
<id>nexus</id>
<repositories>
<repository>
<id>nexus</id>
<url>http://10.11.110.42:8081/nexus/content/groups/public/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>nexus</activeProfile>
</activeProfiles>
项目构建时只能从这个 /nexus/content/groups/public/
路径下搜索 jar,而部分需要的 jar 包在 nexus 的其他路径下,这时该怎么处理。
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.