zoukankan      html  css  js  c++  java
  • 亲测可用的国内maven镜像

          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/  
  • 相关阅读:
    osg模型部分节点旋转
    IFC数据模型构件控制
    自定义基于IFC数据的施工进度数据结构
    QDateTime QString
    Qt获取屏幕分辨率
    Qt自定义类重写 copy
    removeEntry
    initGanttView
    IfcAxis2Placement3D IFC构件的位置和方向
    致我最爱的你
  • 原文地址:https://www.cnblogs.com/thomas12112406/p/5820240.html
Copyright © 2011-2022 走看看