comparison bootstrap.xml @ 7:361f0d420ad4

TL-32: Attempt to handle working off-line
author smith@nwoca.org
date Sat, 18 Dec 2010 11:54:16 -0500
parents e779cd205e30
children 26a4d8410fdf
comparison
equal deleted inserted replaced
6:e779cd205e30 7:361f0d420ad4
13 <macrodef name="import-ant" uri="http://www.ssdt-ohio.org/ant/common"> 13 <macrodef name="import-ant" uri="http://www.ssdt-ohio.org/ant/common">
14 <attribute name="file"/> 14 <attribute name="file"/>
15 <sequential> 15 <sequential>
16 <get dest="${ssdt.devel.kit}/@{file}" 16 <get dest="${ssdt.devel.kit}/@{file}"
17 src="${ssdt.devel.kit.src}/@{file}" 17 src="${ssdt.devel.kit.src}/@{file}"
18 usetimestamp="true" verbose="false" /> 18 usetimestamp="true" verbose="false" ignoreerrors="true" />
19 <import file="${ssdt.devel.kit}/@{file}"/> 19 <import file="${ssdt.devel.kit}/@{file}"/>
20 </sequential> 20 </sequential>
21 </macrodef> 21 </macrodef>
22 22
23 <macrodef name="fetch" uri="http://www.ssdt-ohio.org/ant/common"> 23 <macrodef name="fetch" uri="http://www.ssdt-ohio.org/ant/common">
24 <attribute name="dest" default="${user.home.ant.lib}"/> 24 <attribute name="dest" default="${user.home.ant.lib}"/>
25 <attribute name="src"/> 25 <attribute name="src"/>
26 <sequential> 26 <sequential>
27 <get dest="@{dest}" 27 <get dest="@{dest}"
28 src="@{src}" 28 src="@{src}"
29 usetimestamp="true" verbose="false" /> 29 usetimestamp="true" verbose="false" ignoreerrors="true"/>
30 </sequential> 30 </sequential>
31 </macrodef> 31 </macrodef>
32 32
33 <ssdt:fetch dest="${user.home.ant.lib}/ivy.jar" 33 <ssdt:fetch dest="${user.home.ant.lib}/ivy.jar"
34 src="${ssdt.ivy.jar.src}"/> 34 src="${ssdt.ivy.jar.src}"/>
36 src="${ssdt.ivy.settings.src}"/> 36 src="${ssdt.ivy.settings.src}"/>
37 37
38 <ssdt:import-ant file="ivy-ant.xml"/> 38 <ssdt:import-ant file="ivy-ant.xml"/>
39 <ssdt:import-ant file="antcontrib-ant.xml"/> 39 <ssdt:import-ant file="antcontrib-ant.xml"/>
40 <ssdt:import-ant file="ssdt-common-build.xml"/> 40 <ssdt:import-ant file="ssdt-common-build.xml"/>
41
42 </project> 41 </project>