国内可用maven repository 配置

鉴于一些原因,从maven中央仓库download依赖包时,被各种折磨,下面就简单看下maven setting.xml的一些简单配置


先贴几个国内可用的maven repository连接:

http://maven.oschina.net/content/groups/public/

http://maven.oschina.net/content/repositories/thirdparty/

http://maven.ibiblio.org/maven2/

http://repository.jboss.org/nexus/content/repositories/root_repository/maven2/

http://repo1.maven.org/maven2/

http://repository.sonatype.org/content/groups/public/

http://repository.jboss.com/maven2/


关于setting.xml的配置:

1、本地仓库的配置

E:\.m2\Repository

2、代理仓库,mirror的配置:

  
    
        nexus-osc
        *
        Nexus osc
        http://maven.oschina.net/content/groups/public/
    
    
        nexus-osc-thirdparty
        thirdparty
        Nexus osc thirdparty
        http://maven.oschina.net/content/repositories/thirdparty/
    
        
        nexus-ibiblio
        *
        Nexus ibiblio
        http://maven.ibiblio.org/maven2/
    
  


3、maven插件下载仓库的配置

  
    
        jdk-1.4
        
        
            1.4
        
        
        
            
                nexus
                local private nexus
                http://maven.oschina.net/content/groups/public/
                
                    true
                
                
                    false
                
            
        
        
        
            
            nexus
            local private nexus
            http://maven.oschina.net/content/groups/public/
            
                true
            
            
                false
            
            
        
    



下面是我自己的setting.xml的配置


   
      mirrorId
      repositoryId
      Human Readable Name for this Mirror.
      http://my.repository.com/repo/path
   

     -->

org-repo1
*
org repo1
http://repo1.maven.org/maven2/



com-jboss
*
com jboss
http://repository.jboss.com/maven2/



org-sonatype
*
org sonatype
http://repository.sonatype.org/content/groups/public/

 



若还是下载比较慢的话则只能手动下载再部署到本地仓库了,下载地址:http://repo1.maven.org/maven2/  虽然也不快 但还是比较全的.



你可能感兴趣的:(基础知识,学习笔记,工具,maven)