Maven私服上使用自己的私服下载不了第三方jar包的问题解决

在maven的settings.xml中添加,另外的三个mirror即可解决问题:


    

		
		  nexus
		  *
		  Nexus Mirror
		  http://xxxx:8089/nexus/content/groups/public
	   
		
			Nexus2
			http://xxxx:8089/nexus/content/groups/public
			public-snapshots
		
		
		
		
			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/
		
  

你可能感兴趣的:(#,maven/ant打包)