1234567891011121314151617181920 |
- <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>D:\work\bnc\lib_mingto</localRepository>
- <servers>
- <!-- 由于私服已经设置了禁止匿名访问,所以这里加一个通用账户 -->
- <server>
- <id>nexus-minto</id>
- <username>mt-nexus</username>
- <password>minto@123456</password>
- </server>
- </servers>
- <mirrors>
- <mirror>
- <id>nexus-minto</id>
- <mirrorOf>*</mirrorOf>
- <url>http://maven.duchaduban.com:18081/repository/maven-public/</url>
- </mirror>
- </mirrors>
- </settings>
|