Add settings.xml used by AetherGrapeEngineTests

This commit is contained in:
Andy Wilkinson 2014-08-19 19:43:46 +01:00
parent 5f9fddd44a
commit 896a85b575
1 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,33 @@
<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>central-mirror</id>
<url>http://central-mirror.example.com/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
<servers>
<server>
<id>central-mirror</id>
<username>user</username>
<password>password</password>
</server>
</servers>
<proxies>
<proxy>
<active>true</active>
<protocol>http</protocol>
<host>proxy.example.com</host>
<port>3128</port>
<username>user</username>
<password>password</password>
</proxy>
</proxies>
</settings>