用阿里云镜像解决Maven速度慢问题

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

使用Maven构建项目时,项目中有的依赖包可能下载的非常慢,我们可以通过配置镜像来解决这个问题。 
阿里云目前是全球排名第三 的云计算公司。实力不需要证明。加入阿里云镜像来神速下载。 
在Maven安装目录下配置文件(%MAVEN%/conf/setting.xml)中的< mirrors> 标签中加入。

 
        alimaven
        central
        aliyun maven
        http://maven.aliyun.com/nexus/content/repositories/central/
    
    
      alimaven
      aliyun maven
      http://maven.aliyun.com/nexus/content/groups/public/
      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/
    

 

转载于:https://my.oschina.net/hutaishi/blog/889566

你可能感兴趣的:(用阿里云镜像解决Maven速度慢问题)