Maven settings.xml 配置阿里云或华为开源镜像,eclipse引入指定maven
程序员文章站
2022-07-13 13:47:57
...
1.下载apache-maven-*** ,配置相应的环境变量;
2.在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>
<!-- 华为仓库 -->
<mirror>
<id>huaweicloud</id> <mirrorOf>*</mirrorOf> <url>https://mirrors.huaweicloud.com/repository/maven/</url> </mirror>3.保存关闭;
4.在STS或者Eclipse 工具里引入指定的maven;指定maven的setting.xml;