赞
踩
更改方法打开D:\MyMaven\apache-maven-3.5.2\conf【maven安装】 路径下的settings文件编辑找到
<mirrors></mirrors>标签修改成如下镜像
阿里云的镜像站(首推,新站,速度超级快)
-
- <mirror>
- <id>alimaven</id>
- <name>aliyun maven</name>
- <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
- <mirrorOf>central</mirrorOf>
- </mirror>
maven官方运维的2号仓库
- <mirror>
- <id>repo2</id>
- <name>Mirror from Maven Repo2</name>
- <url>http://repo2.maven.org/maven2/</url>
- <mirrorOf>central</mirrorOf>
- </mirror>
maven在UK架设的仓库(有时候速度会比官方2号仓库快)
- <mirror>
- <id>ui</id>
- <name>Mirror from UK</name>
- <url>http://uk.maven.org/maven2/</url>
- <mirrorOf>central</mirrorOf>
- </mirror>
JBoss的仓库
- <mirror>
- <id>jboss-public-repository-group</id>
- <mirrorOf>central</mirrorOf>
- <name>JBoss Public Repository Group</name>
- <url>http://repository.jboss.org/nexus/content/groups/public</url>
- </mirror>
修改maven本地仓库
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。