global-settings-doge.xml 769 B

123456789101112131415
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  5. <!-- 最小化配置:排除 nexus-doge 避免被 172.31.16.21 镜像拦截 -->
  6. <mirrors>
  7. <mirror>
  8. <id>nexus-public</id>
  9. <name>Private Nexus Public Repository</name>
  10. <url>http://43.99.99.42:18081/repository/maven-releases/</url>
  11. <!-- 排除 nexus-doge,使 nexus-doge 直连 43.99.99.42:18081 -->
  12. <mirrorOf>*,!nexus-releases,!maven-snapshots,!nexus-doge</mirrorOf>
  13. </mirror>
  14. </mirrors>
  15. </settings>