maven配置阿里云仓库镜像

原来的maven地址应该是:https://repo.maven.apache.org/maven2,但是太慢了

在maven的settings.xml文件里的mirrors节点,添加如下子节点:

  
    nexus-aliyun  
    central    
    Nexus aliyun  
    http://maven.aliyun.com/nexus/content/groups/public  
 

或者在 profiles->profile->repositories节点,添加如下子节点:


    nexus-aliyun
    Nexus aliyun
    default
    http://maven.aliyun.com/nexus/content/groups/public
    
        false
    
    
        true
    

 

转载于:https://my.oschina.net/u/4052883/blog/3000592

你可能感兴趣的:(maven配置阿里云仓库镜像)