java进阶干货Java开发Java学习笔记

maven下载jar包改用阿里云maven库

2017-12-20  本文已影响10700人  試毅_思伟

修改maven安装路径中conf文件夹下的setting.xml文件

<mirrors>
    <mirror>
        <id>alimaven</id>
        <name>aliyun maven</name>
        <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
        <mirrorOf>*</mirrorOf>        
    </mirror>
</mirrors>

之后下载速度会很快

方法二:
直接在pom文件里更改 :

<!-- 阿里云maven仓库 -->
<repositories>
    <repository>
        <id>public</id>
        <name>aliyun nexus</name>
        <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
        <releases>
            <enabled>true</enabled>
        </releases>
    </repository>
</repositories>

添加这段

上一篇 下一篇

猜你喜欢

热点阅读