maven配置

修改Maven仓库地址

在%USERPROFILE%\.m2\settings.xml例如:C:\Users\Administrator\.m2\settings.xml 
可以自定义Maven的一些参数, 
复制%M2_HOME%\conf\settings.xml到这个目录修改一下配置。

本地仓库
在settings节点里添加

D:\maven\m2repository

本地仓库地址将从%USERPROFILE%.m2\变为D:\maven\m2repository\

远程仓库
在mirrors节点内添加


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


    jcenter
    central
    jcenter.bintray.com
    http://jcenter.bintray.com/



    repo1
    central
    Human Readable Name for this Mirror.
    http://repo1.maven.org/maven2/


    repo2
    central
    Human Readable Name for this Mirror.
    http://repo2.maven.org/maven2/

将把原来https的仓库变为http的aliyun中央仓库。

修改项目仓库
在项目pom.xml的project节点内添加以下内容即可


    
        alimaven
        aliyun maven
        http://maven.aliyun.com/nexus/content/groups/public/
    
    
        jcenter
        jcenter Repository
        http://jcenter.bintray.com/
        
            false
        
    

你可能感兴趣的:(maven配置)