maven作为一个项目管理工具确实非常好用,之前oschina的中央仓库可用,现在oschina的maven服务器关了,于是自己倒腾了一个nexus,苦于自己的服务器是入门级的,下载速度实在让人着急。今天在谷爹上找到一些可用的中央仓库,话不多说,上干货:

====================阿里云提供的镜像,速度非常快=================== 

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

==================其他maven仓库镜像==========================  

<mirror>    
      <id>repo2</id>    
      <mirrorOf>central</mirrorOf>    
      <name>Human Readable Name for this Mirror.</name>    
      <url>http://repo2.maven.org/maven2/</url>    
</mirror>    
   
<mirror>    
      <id>ui</id>    
      <mirrorOf>central</mirrorOf>    
      <name>Human Readable Name for this Mirror.</name>    
     <url>http://uk.maven.org/maven2/</url>    
</mirror>  
  
  
<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>  
  
  
<mirror>    
      <id>JBossJBPM</id>   
    <mirrorOf>central</mirrorOf>   
    <name>JBossJBPM Repository</name>   
    <url>https://repository.jboss.org/nexus/content/repositories/releases/</url>  
</mirror>  
-------------------------spring maven--------------------------------  
http://maven.springframework.org/release/  
---------------------------------------------------------------------  
http://maven.antelink.com/content/repositories/central/  
http://mavensync.zkoss.org/maven2/  

相关文章:

  • 2021-08-25
  • 2022-12-23
  • 2022-12-23
  • 2021-07-20
  • 2021-08-02
  • 2022-02-21
猜你喜欢
  • 2022-02-22
  • 2021-06-14
  • 2021-12-21
  • 2021-12-09
  • 2022-03-02
  • 2021-05-28
  • 2022-12-23
相关资源
相似解决方案