forked from ozoneplatform/owf-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathivysettings.xml
35 lines (32 loc) · 1.78 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
35
<ivysettings>
<!--<properties file="ivy.properties" />-->
<properties environment="env" />
<settings defaultResolver="chain"/>
<property name="nexus-public"
value="https://www.owfgoss.org/nexus/content/groups/public"/>
<property name="ivy.local.default.root" value="${ivy.default.ivy.user.dir}/local"
override="false" />
<property name="ivy.local.release.root" value="${ivy.default.ivy.user.dir}/release/no-namespace/"
override="false" />
<property name="ivy.local.default.ivy.pattern"
value="[organisation]/[module]/[revision]/[type]s/[artifact]-[revision].[ext]"
override="false" />
<property name="ivy.local.default.artifact.pattern"
value="[organisation]/[module]/[revision]/[type]s/[artifact]-[revision].[ext]"
override="false" />
<property name="ibiblio-maven2-root" value="http://repo1.maven.org/maven2/" override="false" /><!-- FOR REMOTE IVY:INSTALLS INTO REPO -->
<namespaces>
<namespace name="maven2"></namespace>
</namespaces>
<cache resolutionDir="resolution" repositoryDir="repository" />
<resolvers>
<chain name="chain" checkmodified="true">
<filesystem name="local" alwaysCheckExactRevision="true" >
<ivy pattern="${ivy.local.default.root}/[organisation]/[module]/ivy-[revision].xml" />
<artifact pattern="${ivy.local.default.root}/[organisation]/[module]/[type]s/[artifact]-[revision].[ext]" />
</filesystem>
<ibiblio name="nexus" m2compatible="true" root="${nexus-public}"/>
<ibiblio name="maven2-library-repo" root="${ibiblio-maven2-root}" m2compatible="true" namespace="maven2"/>
</chain>
</resolvers>
</ivysettings>