22 lines
683 B
XML
22 lines
683 B
XML
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0"
|
||
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
|
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0
|
||
|
|
http://maven.apache.org/xsd/settings-1.2.0.xsd">
|
||
|
|
|
||
|
|
<!-- 配置阿里云镜像,加速依赖下载 -->
|
||
|
|
<mirrors>
|
||
|
|
<mirror>
|
||
|
|
<id>aliyunmaven</id>
|
||
|
|
<mirrorOf>central</mirrorOf>
|
||
|
|
<name>阿里云公共仓库</name>
|
||
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
||
|
|
</mirror>
|
||
|
|
</mirrors>
|
||
|
|
|
||
|
|
<!-- 可选:配置本地仓库路径 -->
|
||
|
|
<localRepository>/root/.m2/repository</localRepository>
|
||
|
|
|
||
|
|
</settings>
|
||
|
|
|