美文网首页
maven 多mirror配置

maven 多mirror配置

作者: 加勒比兔Z | 来源:发表于2020-03-01 18:53 被阅读0次
        <mirror>
            <id>aliyun</id>
            <!--<mirrorOf>central</mirrorOf>-->
            <mirrorOf>!fireNexus,external:*</mirrorOf>
            <name>aliyun</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public</url>
        </mirror>
        
        <mirror>
            <id>fireNexus</id>
            <mirrorOf>!aliyun,central</mirrorOf>
            <name>fireNexus</name>
            <url>http://nexus.cccc.com/repository/maven-public/</url>
        </mirror>

    相关文章

      网友评论

          本文标题:maven 多mirror配置

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