maven国内镜像--开源中国

阅读更多

最近时间段在弄maven的项目,发现在下载插件或依赖包时总是超时,经检查发现为连接国外网站时网速特慢,于是想找一个国内的镜像。经过谷歌之后发现了开源中国的镜像,速度还不错,于是记录下来,作为备忘。参考配置示例如下:

  
    
		nexus-osc
		central
		Nexus osc
		http://maven.oschina.net/content/groups/public/
	
	
		nexus-osc-thirdparty
		thirdparty
		Nexus osc thirdparty
		http://maven.oschina.net/content/repositories/thirdparty/
	
  

 

  
 
    
    	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
        		
        	
        
    
    
    	osc
    	
        	true
    	
    	
        	
            	osc
                http://maven.oschina.net/content/groups/public/
        	
        	
            	osc_thirdparty
            	http://maven.oschina.net/content/repositories/thirdparty/
        	
        
    	
        	
            	osc
            	http://maven.oschina.net/content/groups/public/
            
    	
    
  

 详细信息可查看:http://maven.oschina.net/help.html

你可能感兴趣的:(maven国内镜像--开源中国)