forked from JeffersonLab/coatjava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaven-settings.xml
More file actions
18 lines (18 loc) · 766 Bytes
/
maven-settings.xml
File metadata and controls
18 lines (18 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!--
At some version of maven, http is no longer allowed. This is a workaround
for freehep, which should probably instead be fixed in poms of the dependency
that is pulling it in.
-->
<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 http://maven.apache.org/xsd/settings-1.2.0.xsd">
<mirrors>
<mirror>
<id>new-freehep</id>
<mirrorOf>freehep</mirrorOf>
<name>freehep</name>
<!--<url>https://java.freehep.org/maven2</url>-->
<url>https://srs.slac.stanford.edu/nexus/content/groups/freehep-maven2-public/</url>
</mirror>
</mirrors>
</settings>