SpringBoot maven设置阿里云仓库

背景:

项目中引入依赖时,很多依赖库都需要访问国外网站,同步的时候会面临依赖无法下载或者下载过慢的问题,这个时候可以在配置文件中设置默认仓库为阿里云,直接起飞,真香~

配置步骤:

1、在maven配置文件pom.xml中增加仓库配置:

  
        
            aliyun-repos
            http://maven.aliyun.com/nexus/content/groups/public/
            
                false
            
        
    

    
        
            aliyun-plugin
            http://maven.aliyun.com/nexus/content/groups/public/
            
                false
            
        
    

2、点击同步,直接起飞;

你可能感兴趣的:(SpringBoot maven设置阿里云仓库)