其他分享
首页 > 其他分享> > maven nexus setting配置

maven nexus setting配置

作者:互联网

https://www.cnblogs.com/hxun/p/11274196.html

https://www.cnblogs.com/canzhen/p/15771859.html

内网中配置setting.xml nexus:只需要mirror即可;可以配置多个mirror

<mirrors>
        <!-- 阿里云仓库 -->
        <mirror>
            <id>alimaven</id>
            <mirrorOf>central</mirrorOf>
            <name>aliyun maven</name>
            <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
        </mirror>
    
        <!-- 中央仓库1 -->
        <mirror>
            <id>repo1</id>
            <mirrorOf>central</mirrorOf>
            <name>Human Readable Name for this Mirror.</name>
            <url>http://repo1.maven.org/maven2/</url>
        </mirror>
    
        <!-- 中央仓库2 -->
        <mirror>
            <id>repo2</id>
            <mirrorOf>central</mirrorOf>
            <name>Human Readable Name for this Mirror.</name>
            <url>http://repo2.maven.org/maven2/</url>
        </mirror>
  </mirrors>

  

标签:www,central,nexus,maven,setting,http,com
来源: https://www.cnblogs.com/xhzd/p/16400264.html