-
Notifications
You must be signed in to change notification settings - Fork 21
/
maven-settings.xml
25 lines (25 loc) · 1.06 KB
/
maven-settings.xml
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
<!--
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-jminuit</mirrorOf>
<name>freehep-jminuit</name>
<url>https://clasweb.jlab.org/clas12maven</url>
<!--<url>https://java.freehep.org/maven2</url>-->
<!--<url>https://srs.slac.stanford.edu/nexus/content/groups/freehep-maven2-public/</url>-->
</mirror>
<mirror>
<id>new-freehep-repo-public</id>
<mirrorOf>freehep-repo-public</mirrorOf>
<name>freehep-repo-public</name>
<url>https://clasweb.jlab.org/clas12maven</url>
</mirror>
</mirrors>
</settings>