<servers>
<server>
<id>my_maven</id>
<username>admin</username>
<password>123456</password>
</server>
</servers>
<!-- mirrors
| This is a list of mirrors to be used in downloading artifacts from remote repositories.
|
| It works like this: a POM may declare a repository to use in resolving certain artifacts.
| However, this repository may have problems with heavy traffic at times, so people have mirrored
| it to several places.
|
| That repository definition will have a unique id, so we can create a mirror reference for that
| repository, to be used as an alternate download site. The mirror site will be the preferred
| server for that repository.
| -->
<mirrors>
<mirror>
<id>my_maven</id>
<mirrorOf>central</mirrorOf>
<name>本地私有仓库</name>
<url>http://192.168.126.160:8088/repository/maven-public/</url>
</mirror>
</mirrors>