MAVEN配置合适镜像源(阿里、官方)提升依赖下载速度

一、实现功能

因为不同地方网速不同,导致常用的maven依赖包无法下载,而报错:

MAVEN配置合适镜像源(阿里、官方)提升依赖下载速度_第1张图片

所以,必备的是在maven的setting.xml中多配置几个镜像源。从而可以实现,采用最快的下载。当然,maven项目只会采用最上面的一个镜像源。

二、镜像源

1.阿里镜像源

    
	
      alimaven
      aliyun maven
      http://maven.aliyun.com/nexus/content/groups/public/
      central
    

2.官网镜像源https://mvnrepository.com/

备注:这个镜像源解决了近期无法使用阿里镜像源下载jar包的问题,很好用,十分推荐!

    
      mvnrepository
      mvnrepository
      http://mvnrepository.com/
    

三、总结

多存储几套,非常有用已被不时之需。但是,因为其他镜像源没有解决我这次遇到的问题,所以,在此只是记录最有用的两个镜像源。

(附录)采用完整的镜像链接

  
    

    
      mvnrepository
      mvnrepository
      http://mvnrepository.com/
    

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


    
    
      mirrorId
      repositoryId
      Human Readable Name for this Mirror.
      http://my.repository.com/repo/path
    


	
      alimaven
      aliyun maven
      http://maven.aliyun.com/nexus/content/groups/public/
      central
    


    
      nexus
      internal nexus repository
      
      http://repo.maven.apache.org/maven2
      central
    

  

 

你可能感兴趣的:(Maven)