-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathivysettings.xml
More file actions
57 lines (56 loc) · 3.14 KB
/
ivysettings.xml
File metadata and controls
57 lines (56 loc) · 3.14 KB
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
55
56
57
<?xml version="1.0" encoding="UTF-8"?>
<ivysettings>
<property name="httpclient.version" value="4.5.14"/>
<property name="httpclient.httpcore.version" value="4.4.16"/>
<property name="httpclient.async.version" value="4.1.5"/>
<property name="dom4j.version" value="2.1.1"/>
<property name="com.google.guava.version" value="28.1-jre"/>
<property name="jetty.version" value="9.4.18.v20190429"/>
<property name="log4j.core.version" value="2.17.1"/>
<property name="log4j.api.version" value="2.17.1"/>
<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>
<url name="maven-https-org">
<artifact pattern="https://repo1.maven.org/maven2/[organization]/[module]/[revision]/[artifact]-[revision].[ext]" />
</url>
<url name="maven-https-orgPath">
<artifact pattern="https://repo1.maven.org/maven2/[orgPath]/[module]/[revision]/[artifact]-[revision].[ext]" />
</url>
<ibiblio name="maven" m2compatible="true" usepoms="false"/>
<url name="zimbra">
<ivy pattern= "https://files.zimbra.com/repository/[organisation]/[module]/[module]-[revision].pom" />
<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]"/>
</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>
<modules>
<module organisation="xerces" name="xercesImpl" revision="2.9.1-patch-01" resolver="maven-redhat"/>
</modules>
</ivysettings>