配置阿里云maven仓库

官方的maven中央仓库在国内太慢了,速度不忍直视。好在国内有一些镜像仓库,比如阿里云,速度快很多很多。

配置阿里云maven仓库

vim ~/.m2/settings.xml

如果文件为空,添加以下内容:



    
        
            nexus-snapshots
            deployment
            123456
        
    
    
        
            alimaven
            aliyun maven
            http://maven.aliyun.com/nexus/content/groups/public/
            central
        
    

如果文件有内容了,则添加镜像部分就好了:

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

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