62 lines
2.2 KiB
XML
62 lines
2.2 KiB
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 https://maven.apache.org/xsd/settings-1.2.0.xsd">
|
|
<mirrors>
|
|
<mirror>
|
|
<id>aliyun-central</id>
|
|
<name>Aliyun Maven Central</name>
|
|
<url>https://maven.aliyun.com/repository/central</url>
|
|
<mirrorOf>central</mirrorOf>
|
|
</mirror>
|
|
<mirror>
|
|
<id>aliyun-public</id>
|
|
<name>Aliyun Public</name>
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
<mirrorOf>*</mirrorOf>
|
|
</mirror>
|
|
</mirrors>
|
|
<profiles>
|
|
<profile>
|
|
<id>aliyun</id>
|
|
<repositories>
|
|
<repository>
|
|
<id>central</id>
|
|
<url>https://maven.aliyun.com/repository/central</url>
|
|
<releases><enabled>true</enabled></releases>
|
|
<snapshots><enabled>false</enabled></snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>spring</id>
|
|
<url>https://maven.aliyun.com/repository/spring</url>
|
|
<releases><enabled>true</enabled></releases>
|
|
<snapshots><enabled>false</enabled></snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>spring-plugin</id>
|
|
<url>https://maven.aliyun.com/repository/spring-plugin</url>
|
|
<releases><enabled>true</enabled></releases>
|
|
<snapshots><enabled>false</enabled></snapshots>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>central</id>
|
|
<url>https://maven.aliyun.com/repository/central</url>
|
|
<releases><enabled>true</enabled></releases>
|
|
<snapshots><enabled>false</enabled></snapshots>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<id>spring-plugin</id>
|
|
<url>https://maven.aliyun.com/repository/spring-plugin</url>
|
|
<releases><enabled>true</enabled></releases>
|
|
<snapshots><enabled>false</enabled></snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</profile>
|
|
</profiles>
|
|
<activeProfiles>
|
|
<activeProfile>aliyun</activeProfile>
|
|
</activeProfiles>
|
|
</settings>
|