遇到maven私服下载过慢或者卡死的情况

maven能够下载出来,则表示路径没有错。之所以下载慢,是因为下载的服务器的原因,可能是因为大多数jar包都是国外的,比较难下载,可以使用下面这几个仓库,或者建立一个maven私服。

1.将D:\apache-maven-3.2.1\conf 目录下的settings.xml文件复制到.m2文件夹中 
2.修改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/
  

也可以在自己的项目pom.xml文件中加入下面的代码:

在网上搜了一下,代码怎么写的也有,主要是要的中间的仓库地址

	
		
			maven-ali
			http://maven.aliyun.com/nexus/content/groups/public//
			
				true
			
			
				true
				always
				fail
			
		
	

 

你可能感兴趣的:(maven)