This repository has been archived by the owner on Feb 16, 2024. It is now read-only.
forked from windyroad/HelloTIBant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathivysettings.xml
34 lines (32 loc) · 1.76 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
<?xml version="1.0" encoding="ISO-8859-1"?>
<ivysettings>
<property name="demo.repo.host" value="repo.windyroad.com.au" />
<property name="demo.repo.basepath" value="http://${demo.repo.host}/windyroad" />
<property name="demo.repo.username" value="${wr.repo.username}" />
<property name="demo.repo.password" value="${wr.repo.password}" />
<include file="${basedir}/${bwda.importer.dir}/ivysettings.xml"/>
<credentials host="repo.windyroad.com.au" realm="Artifactory Realm"
username="${demo.repo.username}" passwd="${demo.repo.password}" />
<resolvers>
<chain name="shared">
<url name="snapshots" m2compatible="true">
<artifact pattern="${demo.repo.basepath}/demo-snapshots/[organisation]/[module]/[revision]/[artifact](-[classifier])-[revision].[ext]" />
<ivy pattern="${demo.repo.basepath}/demo-snapshots/[organisation]/[module]/[revision]/[artifact](-[classifier])-[revision].[ext]" />
</url>
<url name="releases" m2compatible="true">
<artifact pattern="${demo.repo.basepath}/demo-releases/[organisation]/[module]/[revision]/[artifact](-[classifier])-[revision].[ext]" />
<ivy pattern="${demo.repo.basepath}/demo-releases/[organisation]/[module]/[revision]/[artifact](-[classifier])-[revision].[ext]" />
</url>
</chain>
</resolvers>
<include url="${ivy.default.settings.dir}/ivysettings-main-chain.xml"/>
<resolvers>
<chain name="default.${bwda.ivy.settings.id}" returnFirst="true">
<resolver ref="local"/>
<resolver ref="main"/>
</chain>
</resolvers>
<modules>
<module organisation="${ivy.organisation}" name="*" resolver="shared"/>
</modules>
</ivysettings>