settings.xml 750 B

1234567891011121314151617181920
  1. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  4. <mirrors>
  5. <mirror>
  6. <id>nexus-minto</id>
  7. <mirrorOf>*</mirrorOf>
  8. <url>http://maven.duchaduban.com:18181/repository/maven-public/</url>
  9. </mirror>
  10. </mirrors>
  11. <servers>
  12. <!-- 由于私服已经设置了禁止匿名访问,所以这里加一个通用账户 -->
  13. <server>
  14. <id>nexus-minto</id>
  15. <username>mt-nexus</username>
  16. <password>minto@123456</password>
  17. </server>
  18. </servers>
  19. </settings>