几个靠谱的maven仓库镜像地址

来源:互联网 发布:类似天蝎的美剧 知乎 编辑:程序博客网 时间:2024/06/11 15:02

由于以前都是用国内的OSChina的镜像地址,速度感觉比国内镜像地址还要快。试了就知道:

<mirror>

  <id>ui</id>
  <mirrorOf>central</mirrorOf>
  <name>Human Readable Name for this Mirror.</name>
 <url>http://uk.maven.org/maven2/</url>

</mirror>

<mirror>

  <id>sprintio</id>
  <mirrorOf>central</mirrorOf>
  <name>Human Readable Name for this Mirror.</name>
 <url>https://repo.spring.io/libs-snapshot/</url>

</mirror>


国内的镜像地址

<mirror>
        <id>*</id>
        <mirrorOf>central</mirrorOf>
        <url>http://www.gingo.cn:8081/nexus/content/groups/public</url>
 </mirror>

0 0
原创粉丝点击