当前位置:   article > 正文

推荐几个下载最快的maven仓库镜像站_maven哪个镜像速度快

maven哪个镜像速度快

更改方法打开D:\MyMaven\apache-maven-3.5.2\conf【maven安装】 路径下的settings文件编辑找到

<mirrors></mirrors>标签修改成如下镜像

阿里云的镜像站(首推,新站,速度超级快)

  1. <mirror>
  2. <id>alimaven</id>
  3. <name>aliyun maven</name>
  4. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  5. <mirrorOf>central</mirrorOf>
  6. </mirror>


maven官方运维的2号仓库

  1. <mirror>
  2.     <id>repo2</id>
  3.     <name>Mirror from Maven Repo2</name>
  4.     <url>http://repo2.maven.org/maven2/</url>
  5.     <mirrorOf>central</mirrorOf>
  6. </mirror>


maven在UK架设的仓库(有时候速度会比官方2号仓库快)

  1. <mirror>
  2.     <id>ui</id>
  3.     <name>Mirror from UK</name>
  4.     <url>http://uk.maven.org/maven2/</url>
  5.     <mirrorOf>central</mirrorOf>
  6. </mirror>



JBoss的仓库

  1. <mirror>
  2.     <id>jboss-public-repository-group</id>
  3.     <mirrorOf>central</mirrorOf>
  4.     <name>JBoss Public Repository Group</name>
  5.     <url>http://repository.jboss.org/nexus/content/groups/public</url>
  6. </mirror>

修改maven本地仓库 

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号