Skip to content

Commit

Permalink
Add missing config directory
Browse files Browse the repository at this point in the history
  • Loading branch information
dsyer committed Oct 24, 2016
1 parent d6459b7 commit b6c26e6
Showing 1 changed file with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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>

0 comments on commit b6c26e6

Please sign in to comment.