Maven镜像库,国内常用

来源:互联网 发布:网络理财产品收益排名 编辑:程序博客网 时间:2024/06/10 08:55
 
 从网上七七八八的拷贝了一些maven镜像库,已经不记得从哪里抄袭过来的,反正就是这么用,现在整理和大家分享。
 
-----------CN库
<mirror>    
<id>CN</id>    
<name>OSChina Central</name>                                      
 <url>http://maven.oschina.net/content/groups/public/</url>    
<mirrorOf>central</mirrorOf>
</mirror>
 
-----------repo2
<mirror>      
<id>repo2</id>      
<mirrorOf>central</mirrorOf>      
<name>Human Readable Name for this Mirror.</name>      
<url>http://repo2.maven.org/maven2/</url> 
</mirror>
 
-----------net-cn 
<mirror>      
<id>net-cn</id>      
<mirrorOf>central</mirrorOf>      
<name>Human Readable Name for this Mirror.</name>      
<url>http://maven.net.cn/content/groups/public/</url>  
</mirror>
 
 
-----------uk
<mirror>      
<id>uk</id>      
<mirrorOf>central</mirrorOf>      
<name>Human Readable Name for this Mirror.</name>      
<url>http://uk.maven.org/maven2/</url> 
</mirror>
 
 
-----------ibiblio 
<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>
 
-----------jboss
<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>

-----------sprintio
<mirror>
  <id>sprintio</id>
  <mirrorOf>central</mirrorOf>
  <name>Human Readable Name for this Mirror.</name>
 <url>https://repo.spring.io/libs-snapshot/</url>
</mirror>
 
-----------alimaven(推荐阿里的库目前应该是最全,最快的库)
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf> 
</mirror>
 






 

 

 

原创粉丝点击