码迷,mamicode.com
首页 > 其他好文 > 详细

阿里云的maven仓库

时间:2017-07-13 10:42:02      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:.com   groups   url   默认   name   als   tin   nbsp   blog   

自从开源中国的maven仓库挂了之后就一直在用国外的仓库,慢得想要砸电脑的心都有了。如果你和我一样受够了国外maven仓库的龟速下载?快试试阿里云提供的maven仓库,从此不在浪费生命……

仓库地址:http://maven.aliyun.com/nexus/#view-repositories;public~browsestorage

 

仓库配置

在maven的settings.xml文件里的mirrors节点,添加如下子节点:

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

或者直接在profiles->profile->repositories节点,添加如下子节点:

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

 

settings文件的路径

settings.xml的默认路径就:个人目录/.m2/settings.xml

如:

windowns: C:\Users\你的用户名\.m2\settings.xml

linux: /home/你的用户名/.m2/settings.xml

阿里云的maven仓库

标签:.com   groups   url   默认   name   als   tin   nbsp   blog   

原文地址:http://www.cnblogs.com/bollen/p/7158661.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!