linux-tutorial/codes/linux/soft/config/settings-aliyun.xml

23 lines
667 B
XML
Raw Normal View History

2019-02-14 15:52:21 +08:00
<?xml version="1.0" encoding="UTF-8"?>
2019-10-24 18:15:59 +08:00
<settings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2019-10-24 22:00:00 +08:00
xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
2019-02-14 15:52:21 +08:00
2019-10-24 22:00:00 +08:00
<!-- 使用 aliyun maven 仓库加速下载 -->
<mirrors>
<mirror>
<id>aliyun</id>
<name>Aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirror>
<id>repo2</id>
<name>Mirror from Maven Repo2</name>
<url>http://repo2.maven.org/maven2/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
2019-10-24 18:15:59 +08:00
</settings>