<?xml version="1.0" encoding="UTF-8"?>
<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">
	<!--本地仓库-->
	<localRepository>/data/setupfiles/apache-maven-3.8.5/repo</localRepository>
    <!-- 远程镜像 -->
    <mirrors>
	    <!--阿里云镜像1-->
		<mirror>
		  <id>aliyunId</id>
		  <mirrorOf>central</mirrorOf>
		  <name>aliyun maven</name>
		  <url>https://maven.aliyun.com/repository/central</url>
		</mirror>
		<!--阿里云镜像2-->
		<mirror>
		  <id>alimaven</id>
		  <mirrorOf>central</mirrorOf>
		  <name>aliyun maven</name>
		  <url>https://maven.aliyun.com/nexus/content/groups/public/</url>
		</mirror>
		<!--阿里云镜像3-->
		<mirror>
		  <id>alimaven</id>
		  <mirrorOf>central</mirrorOf>
		  <name>aliyun maven</name>
		  <url>https://maven.aliyun.com/nexus/content/repositories/central/</url>
		</mirror>
		<!--阿里云镜像4-->
		<mirror>
		  <id>alimaven</id>
		  <mirrorOf>central</mirrorOf>
		  <name>aliyun maven</name>
		  <url>https://central.maven.org/maven2</url>
		</mirror>
		<!--maven官方镜像-->
		<mirror>
		  <id>mirrorId</id>
		  <mirrorOf>central</mirrorOf>
		  <name>Human Readable Name</name>
		  <url>https://repol.maven.org/maven2/</url>
		</mirror>
    </mirrors>
</settings>