阿里云 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仓库地址配置的主要内容,如果未能解决你的问题,请参考以下文章
Windows 配置Maven的本地仓库和阿里云远程中央仓库
aliyun阿里云Maven仓库地址——加速你的maven构建