有一个困惑 ,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 的其他路径下,这时该怎么处理。
maven settings.xml:
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>nexus</id>
<username>username</username>
<password>password</password>
</server>
</servers>
<mirrors>
<mirror>
<id>nexus</id>
<name>nexus</name>
<url>http://10.11.110.42:8081/nexus/content/groups/public</url>
<mirrorOf>*</mirrorOf>
</mirror>
</mirrors>
<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>
<pluginRepositories>
<pluginRepository>
<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>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>nexus</activeProfile>
</activeProfiles>
</settings>
1
Aruforce 2019-11-08 13:18:56 +08:00
在 nexus 上把所有的 repo 都加到 public 那个 group 里;
然后在 setting.xml 里面使用 public group 做 Mirror, mirrorof * 然后 OK.... |
2
lc7029 2019-11-08 13:43:51 +08:00
你把所有的 repo 加入到一个组,然后引用这个组就好了
|
3
leiuu OP |
4
yinzhili 2019-11-08 14:47:58 +08:00
分组就可以了
|
5
leiuu OP @yinzhili 发现全部的 repo 已经在 public 组里了,更正了一下配置,已经可以下载了,不过特别慢(可能依赖的 jar 比较多)。
|
6
szq8014 2019-11-08 17:13:36 +08:00 1
仓库有类型的,有 proxy/hosted/group
public 那个就是一个组,里面可以配置多个 proxy 或 hosted. 你建一个 hosted 用于上传私有 jar 包,都加进 public 里面就可以统一通过 public 来访问了。 结贴,散花 |