Maven配置阿里云仓库

Maven默认使用国外镜像,下载速度很慢,我们可以将仓库地址配置成国内的,比如阿里云的,复制以下代码,替换settings.xml文件中的mirrors模块:

<mirrors>
    
	 
	 <mirror>
	     <id>alimavenid>
	     <mirrorOf>centralmirrorOf>
	     <name>aliyun mavenname>
	     <url>http://maven.aliyun.com/nexus/content/repositories/central/url>
	 mirror>
	 
	 
	 <mirror>
	     <id>repo1id>
	     <mirrorOf>centralmirrorOf>
	     <name>Human Readable Name for this Mirror.name>
	     <url>http://repo1.maven.org/maven2/url>
	 mirror>
	 
	 
	 <mirror>
	     <id>repo2id>
	     <mirrorOf>centralmirrorOf>
	     <name>Human Readable Name for this Mirror.name>
	     <url>http://repo2.maven.org/maven2/url>
	 mirror>

  mirrors>

Ps:如果在公司或者企业工作,一般大型企业都有自己的中央仓库,将mirror配置成所在企业的即可!

你可能感兴趣的:(Java)