Maven中央仓库镜像地址
mavenrepositories
1、OSChina Central
Java代码
- <mirror>
- <id>CN</id>
- <name>OSChina Central</name>
- <url>http://maven.oschina.net/content/groups/public/</url>
- <mirrorOf>central</mirrorOf>
- </mirror>
2、repo2.maven.org
Java代码
- <mirror>
- <id>repo2</id>
- <mirrorOf>central</mirrorOf>
- <name>Human Readable Name for this Mirror.</name>
- <url>http://repo2.maven.org/maven2/</url>
- </mirror>
3、uk.maven.org
Java代码
- <mirror>
- <id>ui</id>
- <mirrorOf>central</mirrorOf>
- <name>Human Readable Name for this Mirror.</name>
- <url>http://uk.maven.org/maven2/</url>
- </mirror>
4、mirrors.ibiblio.org
Java代码
- <mirror>
- <id>ibiblio</id>
- <mirrorOf>central</mirrorOf>
- <name>Human Readable Name for this Mirror.</name>
- <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url>
- </mirror>
5、repository.jboss.org
Java代码
- <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>