-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathivysettings.xml
19 lines (18 loc) · 877 Bytes
/
ivysettings.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<ivysettings>
<settings defaultResolver="my-chain"/>
<include url="${ivy.default.settings.dir}/ivysettings.xml"/>
<resolvers>
<filesystem name="github-repo-local">
<ivy pattern="${github.repo.local}/release/[organisation]/[module]/ivy-[revision].xml" />
<artifact pattern="${github.repo.local}/release/[organisation]/[module]/[type]s/[artifact]-[revision].[ext]" />
</filesystem>
<url name="github-repo">
<ivy pattern="https://github.com/lonslonz/maven_repo/raw/master/release/[organisation]/[module]/ivy-[revision].xml" />
<artifact pattern="https://github.com/lonslonz/maven_repo/raw/master/release/[organisation]/[module]/[type]s/[artifact]-[revision].[ext]" />
</url>
<chain name="my-chain" returnFirst="true">
<resolver ref="github-repo"/>
<resolver ref="default"/>
</chain>
</resolvers>
</ivysettings>