配置maven仓库-aliyun
Posted 阿布都日
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置maven仓库-aliyun相关的知识,希望对你有一定的参考价值。
修改settings.xml
<mirrors> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> </mirrors>
修改pom.xml
<repositories> <repository> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories>
以上是关于配置maven仓库-aliyun的主要内容,如果未能解决你的问题,请参考以下文章
aliyun阿里云Maven仓库地址——加速你的maven构建