Maven国内镜像(解决Maven下载较慢的一种方法)

Maven是当前流行的项目管理工具,但官方的库在国外有的时候连不上,下载速度很慢,最近在网上找到了一个阿里云的中央仓库,亲测速度有提高

只需要在maven的settings.xml中添加如下配置


  
      
          
          
              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/
         
      
 

 

你可能感兴趣的:(Maven)