maven常用的远程仓库地址
Posted Ranch
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven常用的远程仓库地址相关的知识,希望对你有一定的参考价值。
<mirror> <id>nexus-aliyun</id> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror>
1. 阿里云得远程仓库
<mirror> <id>repo2</id> <name>Mirror from Maven Repo2</name> <url>http://repo2.maven.org/maven2/</url> <mirrorOf>central</mirrorOf> </mirror>
2. maven官方运维的2号仓库
<mirror> <id>ui</id> <name>Mirror from UK</name> <url>http://uk.maven.org/maven2/</url> <mirrorOf>central</mirrorOf> </mirror>
3. maven在UK架设的仓库
<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>
4. JBoss的仓库
以上是关于maven常用的远程仓库地址的主要内容,如果未能解决你的问题,请参考以下文章