blob: 2ce1415d04f473a326a2a199453cb1d59b93305b [file] [log] [blame]
Richard S. Hall85bafab2009-07-13 13:25:46 +00001<?xml version="1.0"?>
2<!--
3 Licensed to the Apache Software Foundation (ASF) under one
4 or more contributor license agreements. See the NOTICE file
5 distributed with this work for additional information
6 regarding copyright ownership. The ASF licenses this file
7 to you under the Apache License, Version 2.0 (the
8 "License"); you may not use this file except in compliance
9 with the License. You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing,
14 software distributed under the License is distributed on an
15 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 KIND, either express or implied. See the License for the
17 specific language governing permissions and limitations
18 under the License.
19-->
20<ivysettings>
21 <properties file="${ivy.settings.dir}/build.properties"/>
22 <caches defaultCacheDir="${cache.dir}" />
23
24 <settings defaultResolver="local" circularDependencyStrategy="error" />
25
26 <!--
27 <classpath file="${sigil-ivy-plugin.jar}" />
28 Ant tasks "subant" and "ant" cause IvySettings to be re-loaded,
29 which then re-loads SigilParser in a new URLClassLoader,
30 which causes ProjectRepository to be re-initialised. Outch!
31 Loading sigil-ivy-plugin.jar in load-ivy task, uses the same ClassLoader
32 and thus avoids re-initialising ProjectRepositiory.
33 Search for Derek Baum in the October 2008 ant-dev archives for my attempt
34 at getting the Ivy communiuty to fix this.
35 http://mail-archives.apache.org/mod_mbox/ant-dev/200810.mbox/browser
36 -->
37 <typedef name="sigil-parser" classname="org.cauldron.bld.ivy.SigilParser" />
38 <typedef name="sigil" classname="org.cauldron.bld.ivy.SigilResolver" />
39
40 <parsers>
41 <sigil-parser config="${ivy.settings.dir}/sigil-repos.properties"
42 quiet="true"/>
43 </parsers>
44
45 <resolvers>
46 <sigil name="sigil"
47 config="${ivy.settings.dir}/sigil-repos.properties"
48 extractBCP="true"/>
49
50 <filesystem name="local">
51 <ivy pattern="${repository.dir}/local/${repository.pattern}" />
52 <artifact pattern="${repository.dir}/local/${repository.pattern}" />
53 </filesystem>
54
55 <filesystem name="shared">
56 <ivy pattern="${repository.dir}/shared/${repository.pattern}" />
57 <artifact pattern="${repository.dir}/shared/${repository.pattern}" />
58 </filesystem>
59 </resolvers>
60
61 <modules>
62 <module organisation="sigil" resolver="sigil"/>
63 </modules>
64</ivysettings>