-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathivysettings.xml
54 lines (46 loc) · 1.71 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
54
<ivysettings>
<!-- Much of the settings file here is a copy from the default one in
the Ivy release, however, the local Karibu repository
are used as the shared ones -->
<settings defaultResolver="default"/>
<!-- Maven central -->
<resolvers>
<ibiblio name="public" m2compatible="true"/>
</resolvers>
<!-- The public repository with Karibu modules at CS, Aarhus University -->
<resolvers>
<ibiblio name="karibu"
m2compatible="true"
root="http://twiga.cs.au.dk:8081/artifactory/libs-release-karibu"
/>
</resolvers>
<!-- The local repo -->
<property name="ivy.local.default.root"
value="${ivy.default.ivy.user.dir}/local" override="false"/>
<property name="ivy.local.default.ivy.pattern"
value="[organisation]/[module]/[revision]/[type]s/[artifact].[ext]"
override="false"/>
<property name="ivy.local.default.artifact.pattern"
value="[organisation]/[module]/[revision]/[type]s/[artifact].[ext]"
override="false"/>
<resolvers>
<filesystem name="local">
<ivy pattern="${ivy.local.default.root}/${ivy.local.default.ivy.pattern}" />
<artifact pattern="${ivy.local.default.root}/${ivy.local.default.artifact.pattern}" />
</filesystem>
</resolvers>
<!-- from ivysettings-main-chain -->
<resolvers>
<chain name="main" dual="true">
<resolver ref="karibu"/>
<resolver ref="public"/>
</chain>
</resolvers>
<!-- from ivysettings-default-chain -->
<resolvers>
<chain name="default" returnFirst="true" checkmodified="true">
<resolver ref="local"/>
<resolver ref="main"/>
</chain>
</resolvers>
</ivysettings>