-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathivysettings.xml
25 lines (22 loc) · 1.02 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
<ivysettings>
<settings defaultResolver="default"/>
<resolvers>
<ibiblio name="local-m2" m2compatible="true"
root="file://${user.home}/.m2/repository"
changingPattern=".*SNAPSHOT"/>
<ibiblio name="my-maven" m2compatible="true" root="https://repo1.maven.org/maven2/"/>
<ibiblio name="central" m2compatible="true"/>
<filesystem name="local-m2-publish" m2compatible="true">
<artifact
pattern="${user.home}/.m2/repository/[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]"/>
</filesystem>
<filesystem name="local-m2-publish-snapshot" m2compatible="true">
<artifact
pattern="${user.home}/.m2/repository/[organisation]/[module]/[revision]-SNAPSHOT/[artifact]-[revision]-SNAPSHOT.[ext]"/>
</filesystem>
<chain name="default">
<resolver ref="central"/>
<resolver ref="my-maven"/>
</chain>
</resolvers>
</ivysettings>