-
Notifications
You must be signed in to change notification settings - Fork 478
/
ivysettings.xml
53 lines (42 loc) · 1.96 KB
/
ivysettings.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<ivysettings>
<settings defaultResolver="default"/>
<credentials host="repository.jboss.org" realm="jboss-releases-repository" username="${username}" passwd="${password}"/>
<properties file="conf/JGROUPS_VERSION.properties"/>
<property name="nexus-public"
value="https://repository.jboss.org/nexus/service/local/staging/deploy/maven2"/>
<property name="nexus-public-and-snapshots"
value="https://repository.jboss.org/nexus/content/groups/public-jboss"/>
<property
name="m2-location"
value="${user.home}/.m2/jboss-repository"
override="false"/>
<property
name="m2-pattern"
value="[organisation]/[module]/[revision]/[module]-[revision](-[classifier]).[ext]"
override="false" />
<property
name="ivy-pattern"
value="[organisation]/[module]/[type]s/[module]-[revision](-[classifier]).[ext]"
override="false" />
<resolvers>
<filesystem name="local-ivy" m2compatible="true">
<artifact pattern="${ivy.default.ivy.user.dir}/${ivy-pattern}" />
</filesystem>
<filesystem name="local-maven2" m2compatible="true" >
<artifact pattern="${m2-location}/${m2-pattern}"/>
</filesystem>
<filesystem name="local-ivy-publish" m2compatible="true">
<artifact pattern="${user.home}/.ivy2/cache/${ivy-pattern}"/>
</filesystem>
<ibiblio name="public" m2compatible="true"/>
<ibiblio name="nexus" m2compatible="true" root="${nexus-public}"/>
<ibiblio name="snapshots" m2compatible="true" root="${nexus-public-and-snapshots}"/>
<!-- Tries to find an artifact in the local maven repo first -->
<chain name="default">
<resolver ref="local-ivy"/>
<resolver ref="local-maven2"/>
<resolver ref="public"/>
<resolver ref="snapshots"/>
</chain>
</resolvers>
</ivysettings>