阿里云 maven仓库地址配置

Posted xiaojf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了阿里云 maven仓库地址配置相关的知识,希望对你有一定的参考价值。

1. maven 配置文件配置settings.xml中设置mirror节点

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

 

 2. pom.xml 配置repository节点

<repository>
    <id>nexus-aliyun</id>
    <name>Nexus aliyun</name>
    <layout>default</layout>
    <url>http://maven.aliyun.com/nexus/content/groups/public</url>
    <snapshots>
        <enabled>false</enabled>
    </snapshots>
    <releases>
        <enabled>true</enabled>
    </releases>
</repository>

 

以上是关于阿里云 maven仓库地址配置的主要内容,如果未能解决你的问题,请参考以下文章

阿里云yum仓库和maven仓库配置记录

Windows 配置Maven的本地仓库和阿里云远程中央仓库

一键安装Maven--配置本地仓库--配置阿里云镜像

aliyun阿里云Maven仓库地址——加速你的maven构建

Spring Boot maven构建——阿里云Maven仓库地址

国内Maven仓库--阿里云Aliyun仓库地址及设置