Maven Central Repository 的官方镜像有哪些?
有谁知道已知(和工作)Maven Central Repository (http://repo1.maven.org/maven2) 的列表是否镜像?
Does anyone know if a list of known (and working) Maven Central Repository (http://repo1.maven.org/maven2) mirrors?
如果没有,当中央存储库关闭时,您使用什么镜像?
If not, what mirrors do you use when the central repository is down?
这摘自 @rvxnet 的答案以及为什么不希望仅提供链接答案的示例.我从 2015-05-20 WaybackMachine 版本的链接:
This is taken from @rvxnet's answer and an example of why link-only answer are not desirable. I've taken this from the 2015-05-20 WaybackMachine version of their link:
官方,但不可浏览:
其他:
此外,还有官方配置使用镜像的说明一>.本质上,您向 settings.xml
添加如下内容:
Also, there are official instructions for configuring to use mirrors. Essentially, you add to you settings.xml
the something like the following:
<mirrors>
<mirror>
<id>planetmirror.com</id>
<name>PlanetMirror Australia</name>
<url>http://downloads.planetmirror.com/pub/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>