41 lines
1.2 KiB
XML
41 lines
1.2 KiB
XML
<?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>.m2/repository</localRepository>
|
|
<pluginGroups>
|
|
</pluginGroups>
|
|
|
|
<proxies>
|
|
</proxies>
|
|
|
|
<mirrors>
|
|
<mirror>
|
|
<id>maven-public</id>
|
|
<mirrorOf>*</mirrorOf>
|
|
<name>maven-public</name>
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
</mirror>
|
|
</mirrors>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>jdk-8</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
<jdk>8</jdk>
|
|
</activation>
|
|
<properties>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
<maven.compiler.compilerVersion>8</maven.compiler.compilerVersion>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<activeProfiles>
|
|
<activeProfile>jdk-8</activeProfile>
|
|
</activeProfiles>
|
|
|
|
</settings> |