maven换仓库地址
Posted rrrzx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven换仓库地址相关的知识,希望对你有一定的参考价值。
在安装目录下的conf/setting.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换仓库地址的主要内容,如果未能解决你的问题,请参考以下文章