比较常用的几个maven第三方镜像

Posted on 2016-12-07 09:28  侘傺  阅读(316)  评论(0编辑  收藏  举报

OSC的:
<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>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>

 

 

ali的:
<mirror>
 <id>alimaven</id>
 <mirrorOf>central</mirrorOf>   
 <name>aliyun maven</name>
 <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</mirror>

 

希望有帮到你

Copyright © 2024 侘傺
Powered by .NET 8.0 on Kubernetes