1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?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">
- <mirrors>
- <mirror>
- <id>nexus</id>
- <mirrorOf>central</mirrorOf>
- <url>http://mvn2.evbj.easou.com/repository/public-repositories/</url>
- </mirror>
- </mirrors>
- <servers>
- <server>
- <id>releases</id>
- <username>alex</username>
- <password>alex2011</password>
- </server>
- <server>
- <id>Snapshots</id>
- <username>alex</username>
- <password>alex2011</password>
- </server>
- <server>
- <id>nexus</id>
- <username>alex</username>
- <password>alex2011</password>
- </server>
- </servers>
- <profiles>
- <profile>
- <id>nexus</id>
- <!--Enable snapshots for the built in central repo to direct -->
- <!--all requests to nexus via the mirror -->
- <repositories>
- <repository>
- <id>central</id>
- <url>http://mvn2.evbj.easou.com/repository/public-repositories</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </repository>
- </repositories>
- <pluginRepositories>
- <pluginRepository>
- <id>centralplugin</id>
- <url>http://mvn2.evbj.easou.com/repository/public-repositories</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </pluginRepository>
- </pluginRepositories>
- </profile>
- </profiles>
- <activeProfiles>
- <!--make the profile active all the time -->
- <activeProfile>nexus</activeProfile>
- </activeProfiles>
- </settings>
|