mirror of
https://gitee.com/kennylee/docker.git
synced 2024-12-02 03:48:15 +08:00
70 lines
2.2 KiB
XML
70 lines
2.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
|
|
|
|
|
|
<localRepository>/var/maven/repository</localRepository>
|
|
|
|
<servers>
|
|
<!--
|
|
<server>
|
|
<id>nexus-snapshots</id>
|
|
<username>admin</username>
|
|
<password>admin123</password>
|
|
</server>
|
|
<server>
|
|
<id>nexus-releases</id>
|
|
<username>admin</username>
|
|
<password>admin123</password>
|
|
</server>
|
|
-->
|
|
</servers>
|
|
|
|
<mirrors>
|
|
<mirror>
|
|
<id>nexus</id>
|
|
<mirrorOf>*</mirrorOf>
|
|
<name>Timekey Nexus</name>
|
|
<url>http://192.168.1.99:8081/nexus/content/groups/public/</url>
|
|
</mirror>
|
|
<mirror>
|
|
<id>aliyun-nexus</id>
|
|
<name>aliyun nexus</name>
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
<mirrorOf>central</mirrorOf>
|
|
</mirror>
|
|
</mirrors>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<repositories>
|
|
<repository>
|
|
<id>nexus</id>
|
|
<name>timekey private nexus</name>
|
|
<url>http://192.168.1.99:8081/nexus/content/groups/public/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>nexus</id>
|
|
<name>timekey private nexus</name>
|
|
<url>http://192.168.1.99:8081/nexus/content/groups/public/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</profile>
|
|
</profiles>
|
|
</settings>
|