-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample-settings.xml
More file actions
25 lines (20 loc) · 806 Bytes
/
sample-settings.xml
File metadata and controls
25 lines (20 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!--
Sample of a local Maven settings file overriding the default URLs of Maven
central to use the JBinRepoProxy.
Copy to ~/.m2/settings.xml or edit your existing file if you have one.
The current settings can be seen by running:
$ mvn help:effective-settings
-->
<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>binrepo-proxy</id>
<name>JBinRepoProxy proxy</name>
<mirrorOf>*</mirrorOf>
<url>http://localhost:8888/maven2</url>
</mirror>
</mirrors>
</settings>