您的位置:首页 > 编程语言 > Java开发

Maven中央仓库镜像地址 mavenrepositories 1、OSChina Central Java代码 收藏代码 <mirror> <id>CN</id>

2017-08-14 14:40 686 查看


Maven中央仓库镜像地址

mavenrepositories 

1、OSChina Central 

Java代码  


<mirror>  

      <id>CN</id>  

      <name>OSChina Central</name>                                                                                                                         

      <url>http://maven.oschina.net/content/groups/public/</url>  

      <mirrorOf>central</mirrorOf>  

</mirror>  

2、repo2.maven.org 

Java代码  


<mirror>    

      <id>repo2</id>    

      <mirrorOf>central</mirrorOf>    

      <name>Human Readable Name for this Mirror.</name>    

      <url>http://repo2.maven.org/maven2/</url>    

</mirror>  

3、uk.maven.org 

Java代码  


<mirror>    

      <id>ui</id>    

      <mirrorOf>central</mirrorOf>    

      <name>Human Readable Name for this Mirror.</name>    

     <url>http://uk.maven.org/maven2/</url>    

</mirror>   

4、mirrors.ibiblio.org 

Java代码  


<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>    

5、repository.jboss.org 

Java代码  


<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>  
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  maven