maven国内镜像源

最近maven工程里需要导入大量jar包,无奈国外自动下载实在太慢,OSCHINA还不能用,所以笔者找到一个较好的阿里云开源镜像,通过把~./m2下的settings.xml里放入如下的内容:

          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
   
       
       
            alimaven
            central
            aliyun maven
            http://maven.aliyun.com/nexus/content/repositories/central/
       

    
       
       
            repo1
            central
            Human Readable Name for this Mirror.
            http://repo1.maven.org/maven2/
       

    
       
       
            repo2
            central
            Human Readable Name for this Mirror.
            http://repo2.maven.org/maven2/
       

   
 



有朋友可能会问你怎么就选这个文件夹,当然你也可以选择其他文件夹,但是最好文件后缀是xml,这样设置好以后,点击Updating,应该就可以很快就下到自己想要的jar包了。

你可能感兴趣的:(maven国内数据源,maven,阿里云,开源,jar)