maven 镜像地址

来源:互联网 发布:网络喷子 编辑:程序博客网 时间:2024/04/30 02:45

转自  http://blog.csdn.net/henren555/article/details/10225955

先留着,换着用

  1. <mirror>  
  2.        <id>repo2</id>  
  3.        <mirrorOf>central</mirrorOf>  
  4.        <name>Human Readable Name for this Mirror.</name>  
  5.        <url>http://repo2.maven.org/maven2/</url>  
  6.    </mirror>  
  7.    <mirror>  
  8.        <id>net-cn</id>  
  9.        <mirrorOf>central</mirrorOf>  
  10.        <name>Human Readable Name for this Mirror.</name>  
  11.        <url>http://maven.net.cn/content/groups/public/</url>  
  12.    </mirror>  
  13.    <mirror>  
  14.        <id>ui</id>  
  15.        <mirrorOf>central</mirrorOf>  
  16.        <name>Human Readable Name for this Mirror.</name>  
  17.        <url>http://uk.maven.org/maven2/</url>  
  18.    </mirror>  
  19.    <mirror>  
  20.        <id>ibiblio</id>  
  21.        <mirrorOf>central</mirrorOf>  
  22.        <name>Human Readable Name for this Mirror.</name>  
  23.        <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url>  
  24.    </mirror>  
  25.    <mirror>  
  26.        <id>jboss-public-repository-group</id>  
  27.        <mirrorOf>central</mirrorOf>  
  28.        <name>JBoss Public Repository Group</name>  
  29.        <url>http://repository.jboss.org/nexus/content/groups/public</url>  
  30.    </mirror>  
  31.    <mirror>  
  32.        <id>skynet.be</id>  
  33.        <url>http://maven2.mirrors.skynet.be/pub/maven2</url>  
  34.        <mirrorOf>central</mirrorOf>  
  35.    </mirror>  
  36.    <mirror>  
  37.        <id>cica.es</id>  
  38.        <url>http://ftp.cica.es/mirrors/maven2</url>  
  39.        <mirrorOf>central</mirrorOf>  
  40.    </mirror>  
  41.    <mirror>  
  42.        <id>ibiblio.org</id>  
  43.        <name>ibiblio Mirror of http://repo1.maven.org/maven2/</name>  
  44.        <url>http://mirrors.ibiblio.org/pub/mirrors/maven2</url>  
  45.        <mirrorOf>central</mirrorOf>  
  46.    </mirror> 

0 0