annotate ssdt.default.ivy.settings.xml @ 361:7b6d30651db7 tip

Cygwin has an ENV that container 'CI'. Causing build issues. Just check for 'github' to determine if it is a local build
author davis@ssdt-ohio.org
date Thu, 16 Nov 2023 15:52:40 -0500
parents 2f6d25a71778
children
rev   line source
6
e779cd205e30 TL-32: Add default ivy settings and update fetch typedef.
smith@nwoca.org
parents:
diff changeset
1 <!-- SSDT default ivy settings.
e779cd205e30 TL-32: Add default ivy settings and update fetch typedef.
smith@nwoca.org
parents:
diff changeset
2 This file should be used by all SSDT projects based on Ivy. It should included from
e779cd205e30 TL-32: Add default ivy settings and update fetch typedef.
smith@nwoca.org
parents:
diff changeset
3 the project's local ivysettings.xml file.
e779cd205e30 TL-32: Add default ivy settings and update fetch typedef.
smith@nwoca.org
parents:
diff changeset
4 -->
e779cd205e30 TL-32: Add default ivy settings and update fetch typedef.
smith@nwoca.org
parents:
diff changeset
5 <ivysettings>
e779cd205e30 TL-32: Add default ivy settings and update fetch typedef.
smith@nwoca.org
parents:
diff changeset
6 <settings defaultResolver="default"/>
65
eca23754b99a hack to allow classpaths to be shortened
smith@nwoca.org
parents: 55
diff changeset
7 <properties file="${user.home}/.ssdt/private.properties" override="true"/>
eca23754b99a hack to allow classpaths to be shortened
smith@nwoca.org
parents: 55
diff changeset
8 <property name="ivy.default.ivy.user.dir" value="${user.home}/.ivy2" override="false"/>
eca23754b99a hack to allow classpaths to be shortened
smith@nwoca.org
parents: 55
diff changeset
9 <property name="ivy.local.default.root" value="${ivy.default.ivy.user.dir}/local" override="false"/>
eca23754b99a hack to allow classpaths to be shortened
smith@nwoca.org
parents: 55
diff changeset
10 <caches defaultCacheDir="${ivy.default.ivy.user.dir}/cache" useOrigin="true" >
eca23754b99a hack to allow classpaths to be shortened
smith@nwoca.org
parents: 55
diff changeset
11 <cache name="snapshot-cache" basedir="${ivy.default.ivy.user.dir}/snapshot-cache" defaultTTL="60m"/>
6
e779cd205e30 TL-32: Add default ivy settings and update fetch typedef.
smith@nwoca.org
parents:
diff changeset
12 </caches>
e779cd205e30 TL-32: Add default ivy settings and update fetch typedef.
smith@nwoca.org
parents:
diff changeset
13 <include url="${ivy.default.settings.dir}/ivysettings-public.xml"/>
e779cd205e30 TL-32: Add default ivy settings and update fetch typedef.
smith@nwoca.org
parents:
diff changeset
14 <include url="${ivy.default.settings.dir}/ivysettings-shared.xml"/>
e779cd205e30 TL-32: Add default ivy settings and update fetch typedef.
smith@nwoca.org
parents:
diff changeset
15 <include url="${ivy.default.settings.dir}/ivysettings-local.xml"/>
e779cd205e30 TL-32: Add default ivy settings and update fetch typedef.
smith@nwoca.org
parents:
diff changeset
16 <include url="${ivy.default.settings.dir}/ivysettings-main-chain.xml"/>
e779cd205e30 TL-32: Add default ivy settings and update fetch typedef.
smith@nwoca.org
parents:
diff changeset
17 <include url="${ivy.default.settings.dir}/ivysettings-default-chain.xml"/>
e779cd205e30 TL-32: Add default ivy settings and update fetch typedef.
smith@nwoca.org
parents:
diff changeset
18 <resolvers >
48
561ece0a8225 Return to using snapshot resolver to ensure ivy.xml file from dependency can be found and improve performance and tracbility. removed changing from chain. Modified local to be treated as local.
smith@nwoca.org
parents: 47
diff changeset
19 <chain name="default">
54
a435af436c95 create separate settings file for bambo (ci server)
smith@nwoca.org
parents: 53
diff changeset
20 <filesystem name="local" checkmodified="true" force="true" local="true" changingPattern=".*SNAPSHOT" >
94
1290b23e7b76 modify ivy and gradle to use same local repo
smith@nwoca.org
parents: 70
diff changeset
21 <ivy pattern="${ivy.local.default.root}/[module]-ivy-[revision].xml" />
100
44c4cb9d0fed add artifact to local repo artifact naming
smith@nwoca.org
parents: 94
diff changeset
22 <artifact pattern="${ivy.local.default.root}/[module]-[artifact]-[revision](-[classifier]).[ext]" />
6
e779cd205e30 TL-32: Add default ivy settings and update fetch typedef.
smith@nwoca.org
parents:
diff changeset
23 </filesystem>
48
561ece0a8225 Return to using snapshot resolver to ensure ivy.xml file from dependency can be found and improve performance and tracbility. removed changing from chain. Modified local to be treated as local.
smith@nwoca.org
parents: 47
diff changeset
24
53
7066d68bcb47 enable resolve logging. Fixed changing pattern. set ttl on snapshot cache. Allow forcemode to be disabled.
smith@nwoca.org
parents: 52
diff changeset
25 <url name="ssdt-snapshots" changingPattern=".*SNAPSHOT" checkmodified="true" m2compatible="true" cache="snapshot-cache">
278
2f6d25a71778 DEP-19: update maven repo urls
Marc Davis <davis@ssdt-ohio.org>
parents: 100
diff changeset
26 <artifact pattern="https://docker.ssdt.io/artifactory/libs-snapshots/[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]" />
2f6d25a71778 DEP-19: update maven repo urls
Marc Davis <davis@ssdt-ohio.org>
parents: 100
diff changeset
27 <ivy pattern="https://docker.ssdt.io/artifactory/libs-snapshots/[organisation]/[module]/ivy-[revision].xml" />
70
23c4f06b3880 fix jasper config
smith@nwoca.org
parents: 69
diff changeset
28 </url>
69
9e09ab83f8d9 add proper ivy pattern for ssdt release repository
smith@nwoca.org
parents: 65
diff changeset
29 <url name="ssdt-releases" checkmodified="true" m2compatible="true" cache="snapshot-cache">
278
2f6d25a71778 DEP-19: update maven repo urls
Marc Davis <davis@ssdt-ohio.org>
parents: 100
diff changeset
30 <artifact pattern="https://docker.ssdt.io/artifactory/libs-releases/[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]" />
2f6d25a71778 DEP-19: update maven repo urls
Marc Davis <davis@ssdt-ohio.org>
parents: 100
diff changeset
31 <ivy pattern="https://docker.ssdt.io/artifactory/libs-releases/[organisation]/[module]/ivy-[revision].xml" />
69
9e09ab83f8d9 add proper ivy pattern for ssdt release repository
smith@nwoca.org
parents: 65
diff changeset
32 </url>
278
2f6d25a71778 DEP-19: update maven repo urls
Marc Davis <davis@ssdt-ohio.org>
parents: 100
diff changeset
33 <ibiblio name="ssdt-repo" m2compatible="true" root="https://docker.ssdt.io/artifactory/ssdt-repo" />
47
f1c7d93a41c8 TL-35 update resolver chain
aldrich
parents: 23
diff changeset
34
6
e779cd205e30 TL-32: Add default ivy settings and update fetch typedef.
smith@nwoca.org
parents:
diff changeset
35 </chain>
53
7066d68bcb47 enable resolve logging. Fixed changing pattern. set ttl on snapshot cache. Allow forcemode to be disabled.
smith@nwoca.org
parents: 52
diff changeset
36 <filesystem name="publish-only" local="true">
7066d68bcb47 enable resolve logging. Fixed changing pattern. set ttl on snapshot cache. Allow forcemode to be disabled.
smith@nwoca.org
parents: 52
diff changeset
37 <ivy pattern="${ivy.default.ivy.user.dir}/publish/${ivy.local.default.ivy.pattern}" />
7066d68bcb47 enable resolve logging. Fixed changing pattern. set ttl on snapshot cache. Allow forcemode to be disabled.
smith@nwoca.org
parents: 52
diff changeset
38 <artifact pattern="${ivy.default.ivy.user.dir}/publish/${ivy.local.default.artifact.pattern}" />
54
a435af436c95 create separate settings file for bambo (ci server)
smith@nwoca.org
parents: 53
diff changeset
39 </filesystem>
6
e779cd205e30 TL-32: Add default ivy settings and update fetch typedef.
smith@nwoca.org
parents:
diff changeset
40 </resolvers>
51
20460e252592 remove unecessary ivy.properties
smith@nwoca.org
parents: 50
diff changeset
41 </ivysettings>