Maven中央仓库地址(实用版)

最近做项目的时候,一直发现常用的oschina maven源一直都没有反应,后面发现原来oschina竟然关闭了maven源服务,后面经同事推荐了阿里云的maven源,这速度杠杠的

Maven 中央仓库地址:

1、http://www.sonatype.org/nexus/  私服nexus工具使用
2、http://mvnrepository.com/ (推荐)

3、http://repo1.maven.org/maven2

4、http://maven.aliyun.com/nexus/content/groups/public/  阿里云  (强力推荐)

5、http://repo2.maven.org/maven2/ 私服nexus工具使用

6、http://uk.maven.org/maven2/

7、http://repository.jboss.org/nexus/content/groups/public

8、http://maven.oschina.net/content/groups/public/  oschina可惜啦,以前一直用这个,不过现在有阿里云来擦屁股啦

9、http://mirrors.ibiblio.org/maven2/

10、http://maven.antelink.com/content/repositories/central/

11、http://nexus.openkoala.org/nexus/content/groups/Koala-release/

12、http://maven.tmatesoft.com/content/groups/public/

其实,国内maven镜像虽然快,但是更新比较慢,国外的仓库由于国内网络的原因,下载简直不能忍,但是更新很快,可以根据自身的情况选择,有些人会花些钱开代理访问外网比较快,建议使用原装。下面是maven库配置

<mirror>
< id>oschina-repo</id>
< name>开源中国镜像</name>
< mirrorOf>central</mirrorOf>
< url>可以根据自己的网络情况选填上面的url</url>
< /mirror>

二、maven搜索

国内:http://www.codedocs.net/maven/browse

国外:http://mvnrepository.com/

转自:https://blog.csdn.net/qq_23689053/article/details/79232784

https://blog.csdn.net/qiangqiang816/article/details/81541554

猜你喜欢

转载自www.cnblogs.com/zt007/p/10048480.html