Maven中添加阿里云仓库

我们在开发的过程中,经常会使用本公司的maven仓库,有时候对于自己开发的项目,可能需要用到公共库,如下配置即可同时使用这二者。

修改~/.m2/settings.xml为以下内容:



  
    
  /Users/wucongyou/.m2/repository  
  true  
  false  
  false  
   
     
      yourcompany-repo  
      *  
      anyname  
      http://yourcompany_repo_addr/content/groups/public 
      
     
      ali-maven  
      central  
      ali-maven  
      http://maven.aliyun.com/nexus/content/groups/public/ 
     
    

你可能感兴趣的:(Maven中添加阿里云仓库)