其他分享
首页 > 其他分享> > Maven配置阿里云镜像仓库

Maven配置阿里云镜像仓库

作者:互联网

Maven配置阿里云镜像仓库

1、设置本地仓库路径

在settings.xml文件中添加localRepository标签

<localRepository>D:\repository</localRepository>

2、在settings.xml文件中的mirrors下添加mirror标签

    <!-- 阿里云仓库 -->
    <mirror>
        <id>alimaven</id>
        <mirrorOf>central</mirrorOf>
        <name>aliyun maven</name>
        <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
    </mirror>
 
 
    <!-- 中央仓库1 -->
    <mirror>
        <id>repo1</id>
        <mirrorOf>central</mirrorOf>
        <name>Human Readable Name for this Mirror.</name>
        <url>http://repo1.maven.org/maven2/</url>
    </mirror>
 
 
    <!-- 中央仓库2 -->
    <mirror>
        <id>repo2</id>
        <mirrorOf>central</mirrorOf>
        <name>Human Readable Name for this Mirror.</name>
        <url>http://repo2.maven.org/maven2/</url>
    </mirror>

3、除了setting配置,在项目的pom文件中指定镜像仓库地址也可以

    <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>

标签:maven,http,仓库,Maven,阿里,central,aliyun,镜像
来源: https://blog.csdn.net/weixin_43979189/article/details/121788323