配置maven 的阿里云远程仓库(国内)

maven阿里云中央仓库的两种方式
1、修改maven根目录下的conf文件夹中的setting.xml文件,内容如下:

<mirror>
    <id>alimanven</id>
    <name>aliyun maven</name>
    <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
    <mirrorOf>central</mirrorOf>
</mirror>

2、修改pom.xml文件,增加如下内容:

<repositories>
    <repository>
        <id>maven - ali</id>
        <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
        <releases>
            <enabled>true</enabled>
        </releases>
        <snapshots>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
            <checksumPolicy>fail</checksumPolicy>
        </snapshots>
    </repository>
</repositories>
    原文作者:mliu222
    原文地址: https://segmentfault.com/a/1190000012597340
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞