-
Notifications
You must be signed in to change notification settings - Fork 9
/
ivysettings.xml
39 lines (39 loc) · 2.25 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
<?xml version="1.0" encoding="UTF-8"?>
<ivysettings>
<settings defaultResolver="chain-resolver" />
<caches defaultCacheDir="${dev.home}/.ivy2/cache"/>
<resolvers>
<chain name="chain-resolver" returnFirst="true">
<filesystem name="local">
<artifact pattern= "${dev.home}/.zcs-deps/[organisation]/[module]/[module]-[revision].[ext]" />
<artifact pattern= "${dev.home}/.zcs-deps/[organisation]-[revision].[ext]" />
<artifact pattern= "${dev.home}/.zcs-deps/[organisation].[ext]" />
</filesystem>
<ibiblio name="maven" m2compatible="true" usepoms="false"/>
<url name="zimbra">
<artifact pattern="https://files.zimbra.com/repository/[module]/[artifact]-[revision].[ext]" />
<artifact pattern="https://files.zimbra.com/repository/[module]/[artifact].[ext]" />
<artifact pattern="https://files.zimbra.com/repository/[organisation]/[module]/[module]-[revision].[ext]" />
</url>
<ibiblio name="maven-redhat" root="https://maven.repository.redhat.com/ga/" pattern="[organisation]/[module]/[revision]/[module]-[revision].[ext]"/>
<ibiblio name="alfresco" root="https://artifacts.alfresco.com/nexus/content/groups/public/" m2compatible="true"/>
</chain>
<chain name="chain-resolver-zip" returnFirst="true">
<filesystem name="local">
<!-- ivy:install with zip artifacts was failing some times so had to add this line to fix it -->
<!-- http://grokbase.com/t/ant/ivy-user/086ct4mr6h/newbie-cant-resolve-zip-files -->
<ivy pattern= "${dev.home}/.zcs-deps/[organisation]/[module]/[module]-[revision].xml" />
<artifact pattern= "${dev.home}/.zcs-deps/[organisation]/[module]/[module]-[revision].[ext]" />
<artifact pattern= "${dev.home}/.zcs-deps/[organisation]-[revision].[ext]" />
<artifact pattern= "${dev.home}/.zcs-deps/[organisation].[ext]" />
</filesystem>
</chain>
<!-- 'build-tmp' resolver is not part of the chain and is used only for packaging war files -->
<filesystem name="build-tmp">
<artifact pattern="${build.tmp.dir}/[module]-[revision].[ext]" />
</filesystem>
<filesystem name="build-dist">
<artifact pattern="${dist.dir}/[module]-[revision].[ext]" />
</filesystem>
</resolvers>
</ivysettings>