maven下载速度太慢(换成阿里云的maven中央仓库)

来源:互联网 发布:大数据微营销公司 编辑:程序博客网 时间:2024/05/16 00:35

默认的maven中央仓库是国外的,卡的很,非常慢,改为阿里云的中央仓库就好了。只需要在setting.xml中mirrors节点中增加一段代码:

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


然后切换成功后,速度蹭蹭的往上涨!这就是解决maven下载依赖包太慢的解决方法!maven 阿里仓库。


实测,下载spring-web-3.2.3.RELEASE.jar从0.5KB飙到了100KB/S 

0 0
原创粉丝点击