maven使用阿里云镜像

1.pom文件添加

 <repositories>
        <repository>
            <id>nexus-aliyun</id>
            <name>nexus-aliyun</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
    </repositories>

2.设置本地setting文件

<mirror>
    <!--This sends everything else to /public -->
    <id>nexus-aliyun</id>
    <mirrorOf>*</mirrorOf>
    <name>Nexus aliyun</name>
    <url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>

参照maven中无法下载依赖 https://www.jianshu.com/p/7861c6f2b517

上一篇:Python3 正则表达式(1)——match&&seach的区别


下一篇:JAVA使用for循环会重复调用list.size()吗3