美文网首页
maven配置,如果一个镜像不成功,自动换取下一个镜像

maven配置,如果一个镜像不成功,自动换取下一个镜像

作者: 爱吃豆包 | 来源:发表于2022-01-13 15:43 被阅读0次

如果私有镜像服务找不到 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的时候,就去阿里镜像

image.png

相关文章

网友评论

      本文标题:maven配置,如果一个镜像不成功,自动换取下一个镜像

      本文链接:https://www.haomeiwen.com/subject/cfincrtx.html