收集Maven镜像地址
http://www.oschina.net/question/146430_132129
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
Xml代码 <mirror> <id>mirrors.ibiblio.org</id> <name>mirrors.ibiblio.org</name> <url>http://mirrors.ibiblio.org/maven2/</url> <mirrorOf>central</mirrorOf> </mirror> <mirror> <id>nexus-tmatesoft</id> <mirrorOf>central</mirrorOf> <name>Nexus tmatesoft</name> <url>http://maven.tmatesoft.com/content/groups/public/</url> </mirror> <mirror> <id>uk.maven.org</id> <mirrorOf>central</mirrorOf> <name>UK Central</name> <url>http://uk.maven.org/maven2</url> </mirror> <!-- United States, St. Louis--> <mirror> <id>Central</id> <url>http://repo1.maven.org/maven2</url> <mirrorOf>central</mirrorOf> </mirror> <!-- France --> <mirror> <id>antelink.com</id> <url>http://maven.antelink.com/content/repositories/central/</url> <mirrorOf>central</mirrorOf> </mirror> |
