| 123456789101112131415 |
- <?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">
- <!-- 最小化配置:排除 nexus-doge 避免被 172.31.16.21 镜像拦截 -->
- <mirrors>
- <mirror>
- <id>nexus-public</id>
- <name>Private Nexus Public Repository</name>
- <url>http://43.99.99.42:18081/repository/maven-releases/</url>
- <!-- 排除 nexus-doge,使 nexus-doge 直连 43.99.99.42:18081 -->
- <mirrorOf>*,!nexus-releases,!maven-snapshots,!nexus-doge</mirrorOf>
- </mirror>
- </mirrors>
- </settings>
|