forked from liferay/liferay-nativity
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ivysettings.xml
30 lines (22 loc) · 1.3 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
<ivysettings>
<settings defaultResolver="default" />
<credentials host="${sonatype.release.hostname}" realm="${sonatype.release.realm}" passwd="${sonatype.release.password}" username="${sonatype.release.username}" />
<credentials host="${sonatype.snapshot.hostname}" realm="${sonatype.snapshot.realm}" passwd="${sonatype.snapshot.password}" username="${sonatype.snapshot.username}" />
<resolvers>
<ibiblio m2compatible="true" name="liferay-public" root="https://repo.maven.apache.org/maven2/" />
<ibiblio m2compatible="true" name="local-m2" root="file://${user.home}/.m2/repository" />
<chain dual="true" name="default">
<resolver ref="local-m2" />
<resolver ref="liferay-public" />
</chain>
<filesystem m2compatible="true" name="local-m2">
<artifact pattern="${user.home}/.m2/repository/[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]" />
</filesystem>
<url m2compatible="true" name="sonatype-m2-release">
<artifact pattern="${sonatype.release.url}/[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]" />
</url>
<url m2compatible="true" name="sonatype-m2-snapshot">
<artifact pattern="${sonatype.snapshot.url}/[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]" />
</url>
</resolvers>
</ivysettings>