如果私有镜像服务找不到
jar
,就换另一个镜像镜像找jar
配置多个镜像
<!-- 服务 -->
<server>
<id>common-core-release</id>
<username>maven-deployer</username>
<password>xxxx</password>
</server>
<server>
<id>common-core-snapshot</id>
<username>maven-deployer</username>
<password>xxxxx</password>
</server>
==========================
<!-- 私有镜像库 -->
<mirror>
<id>xxxx-maven-central</id>
<name>uaf-maven-central</name>
<url>https://xxxxxx:8842/repository/xxxx-maven-group/</url>
<!-- !common-core-snapshot,* -->
<mirrorOf>!common-core-snapshot,*</mirrorOf>
</mirror>
<!-- 阿里镜像镜像 -->
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
====================
<!-- 活动配置文件 -->
<activeProfiles>
<activeProfile>xxxx-maven-central</activeProfile>
<activeProfile>nexus-aliyun</activeProfile>
</activeProfiles>
最终效果就是,私有仓库镜像
没有找到jar的时候,就去阿里镜像
找
网友评论