Maven国内阿里镜像(Maven下载慢的解决方法)

 

  Maven是当前流行的项目管理工具,但官方的库在国外经常连不上,连上也下载速度很慢。国内oschina的maven服务器很早之前就关了。今天发现阿里云的一个中央仓库,亲测可用。

 
     alimaven
     central
     aliyun maven
     https://maven.aliyun.com/repository/central
 

  修改${maven.home}/conf或者${user.home}/.m2文件夹下的settings.xml文件,在标签下加入上述内容即可。如下:

复制代码

  
  
     
          
          
             alimaven
              central
             aliyun maven
             https://maven.aliyun.com/repository/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/
         
      
 

复制代码

   更多阿里云的Maven镜像仓库地址,如releases、snapshots,可参见https://maven.aliyun.com/mvn/view

        资源转自:http://www.cnblogs.com/xiongxx/p/6057558.html

你可能感兴趣的:(maven)