欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

nexus设置代理仓库

程序员文章站 2024-03-13 10:39:51
...

默认nexus使用的是默认的仓库
https://repo1.maven.org/maven2/

代理仓库:

使用代理仓库可以快速的使用国内的镜像,下载更快。
nexus设置代理仓库

构建项目中在pom.xml里面增加

        <repositories>
        <repository>
            <id>public</id>
            <name>public</name>
            <url>http://193.112.76.194:8081/nexus/content/groups/public/</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
    </repositories>

发现下载都是从阿里云的地址下载的了。换下顺序,又会优先从*仓库下载。