Skip to content

Commit 896a85b

Browse files
committed
Add settings.xml used by AetherGrapeEngineTests
1 parent 5f9fddd commit 896a85b

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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
4+
http://maven.apache.org/xsd/settings-1.0.0.xsd">
5+
6+
<mirrors>
7+
<mirror>
8+
<id>central-mirror</id>
9+
<url>http://central-mirror.example.com/maven2</url>
10+
<mirrorOf>central</mirrorOf>
11+
</mirror>
12+
</mirrors>
13+
14+
<servers>
15+
<server>
16+
<id>central-mirror</id>
17+
<username>user</username>
18+
<password>password</password>
19+
</server>
20+
</servers>
21+
22+
<proxies>
23+
<proxy>
24+
<active>true</active>
25+
<protocol>http</protocol>
26+
<host>proxy.example.com</host>
27+
<port>3128</port>
28+
<username>user</username>
29+
<password>password</password>
30+
</proxy>
31+
</proxies>
32+
33+
</settings>

0 commit comments

Comments
 (0)