Maven配置多个仓库方式

公司部署了一个私有仓库,但是需要挂VPN,VPN还有时间限制,时不时就断了,每次引用新的Jar包就要登录VPN,很麻烦,但是有些包直接aliyun也能下载,所以配置多个仓库,省得没必要的时候还挂VPN。

 
	C:\\Data\\Soft\\Maven\\data 
    
        
            xxx
            
                
                    nexus_public
                    http://maven.xxx.com/repository/maven-public/
                    
                        true
						always
                    
                    
						true
					    
				
			
			
				
					nexus_public
					http://maven.xxx.com/repository/maven-public/
					
						true
					
					
						true
					
				
			
		
		
            aliyun
            
                
                    nexus_aliyun
                    https://maven.aliyun.com/nexus/content/groups/public/
                    
                        true
						always
                    
                    
						true
					    
				
			
		
	
	
	  
        xxx  
        aliyun  
      

上述配置就会先去下载公司私库,如果不能下载再去搜索阿里云的。

你可能感兴趣的:(maven)