Maven配置阿里云镜像
作者:互联网
Maven配置阿里云镜像
1.找到maven的settings.xml文件,通常在maven文件夹的conf中,我的在以下路径:
2.在settings.xml中找到标签,并在其中加入如下代码:
<mirror>
<id>aliyunmaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
</mirror>
3,最后在idea中配置好maven路径,【File】–>【Settings】–>【 Build, Execution, Deployment】–>【 Build Tools】–>【Maven】
标签:xml,maven,central,Maven,阿里,Build,aliyun,镜像 来源: https://blog.csdn.net/qq_42239005/article/details/122651352