Maven的阿里云镜像配置

全局配置
添加阿里云的镜像到maven的setting.xml配置中,这样就不需要在每个pom中都添加镜像仓库的配置,在mirrors节点下面添加子节点:

 <mirror>      
	  <id>nexus-aliyun</id>    
	  <name>nexus-aliyun</name>  
	  <url>http://maven.aliyun.com/nexus/content/groups/public</url>    
	  <mirrorOf>central</mirrorOf>      
	</mirror>

setting.xml文件的位置

Maven的阿里云镜像配置_第1张图片

镜像插入位置

Maven的阿里云镜像配置_第2张图片

你可能感兴趣的:(maven,maven)