maven项目在pom文件中配置仓库
以阿里云镜像为例,在pom.xml中加入如下代码 :
<repositories>
<repository>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</repository>
</repositories>
可以在不修改maven setting.xml 配置文件(配置文件可能是私服)的情况下增加远程仓库
来源:CSDN
作者:hey_liar
链接:https://blog.csdn.net/hey_liar/article/details/103936280