阿里云maven镜像配置文件
作者:互联网
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<!-- 配置镜像 -->
<mirrors>
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>https://maven.aliyun.com/nexus/content/groups/public/</url>
</mirror>
</mirrors>
<!-- 配置仓库位置 -->
<localRepository>D:\m2\repository</localRepository>
</settings>
标签:content,central,aliyun,配置文件,maven,groups,镜像 来源: https://www.cnblogs.com/freepc/p/16114758.html