forked from ESGF/esgf-web-fe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ivysettings.xml
54 lines (44 loc) · 3.15 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<ivysettings>
<settings defaultResolver="default"/>
<property name="spring.version" value="3.2.2.RELEASE" />
<property name="spring.security.version" value="3.1.4.RELEASE" />
<property name="hibernate.version" value="3.6.1.Final" />
<property name="ivy.esgf-repo-local.default.root.dir" value="${user.home}/.ivy2/local" override="false"/>
<property name="ivy.esgf.devel.root.url" value="http://devel.esgf.org/artifactory/esgf-repo-devel" override="false"/>
<property name="ivy.esgf.shared.root.url" value="http://devel.esgf.org/artifactory/esgf-repo-share" override="false"/>
<property name="jboss.repo.url" value="https://repository.jboss.org/nexus/content/groups/public" override="false"/>
<property name="ivy.esgf-repo-local.default.root.dir" value="${user.home}/.ivy2/local" override="false"/>
<resolvers>
<filesystem name="esgf_repo_local">
<ivy pattern="${ivy.esgf-repo-local.default.root.dir}/[organisation]/[module]/[revision]/ivy-[revision].xml" />
<artifact pattern="${ivy.esgf-repo-local.default.root.dir}/[organisation]/[module]/[revision]/[artifact].[ext]" />
<artifact pattern="${ivy.esgf-repo-local.default.root.dir}/[organisation]/[module]/[revision]/[artifact].[revision].[ext]" />
<artifact pattern="${ivy.esgf-repo-local.default.root.dir}/[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]" />
</filesystem>
<url name="esgf_repo_devel" checksums="md5">
<ivy pattern="${ivy.esgf.devel.root.url}/[organisation]/[module]/[revision]/ivy-[revision].xml" />
<artifact pattern="${ivy.esgf.devel.root.url}/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" />
<artifact pattern="${ivy.esgf.devel.root.url}/[organisation]/[module]/[revision]/[artifact].[revision].[ext]" />
<artifact pattern="${ivy.esgf.devel.root.url}/[organisation]/[module]/[revision]/[artifact].[ext]" />
</url>
<url name="esgf_repo_share" checksums="md5">
<ivy pattern="${ivy.esgf.shared.root.url}/[organisation]/[module]/[revision]/ivy-[revision].xml" />
<artifact pattern="${ivy.esgf.shared.root.url}/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" />
<artifact pattern="${ivy.esgf.shared.root.url}/[organisation]/[module]/[revision]/[artifact].[revision].[ext]" />
<artifact pattern="${ivy.esgf.shared.root.url}/[organisation]/[module]/[revision]/[artifact].[ext]" />
</url>
<ibiblio name="public" m2compatible="true"/>
<url name="jboss_repo" m2compatible="true">
<artifact pattern="${jboss.repo.url}/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" />
</url>
</resolvers>
<resolvers>
<chain name="default" returnFirst="true">
<resolver ref="esgf_repo_local" />
<resolver ref="esgf_repo_devel" />
<resolver ref="esgf_repo_share" />
<resolver ref="public" />
<resolver ref="jboss_repo" />
</chain>
</resolvers>
</ivysettings>