annotate bootstrap.xml @ 4:be1051bf262f

add globally common ant scripts
author smith@nwoca.org
date Fri, 17 Dec 2010 16:55:03 -0500
parents d5c0421bfd57
children 9c847b8c7e9c
rev   line source
1
73a34884e523 Initial bootstrap
smith@nwoca.org
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8"?>
73a34884e523 Initial bootstrap
smith@nwoca.org
parents:
diff changeset
2 <project name="ssdt.bootstrap" basedir=".">
4
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
3 <echo message="invoking ssdt bootstrap" level="info"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
4
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
5 <property file="${ssdt.devel.kit}/private.properties"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
6 <property name="user.home.ant.lib" value="${user.home}/.ant/lib"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
7 <mkdir dir="${ssdt.devel.kit}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
8
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
9 <!-- <macrodef name="ssdt-import-ant">
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
10 <attribute name="file"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
11 <sequential>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
12 <get dest="${ssdt.devel.kit}/ivy-ant.xml"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
13 src="${ssdt.devel.kit.src}/ivy-ant.xml"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
14 usetimestamp="true"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
15 <import file="${ssdt.devel.kit}/ivy-ant.xml"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
16
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
17 </sequential>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
18 </macrodef> -->
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
19
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
20 <property name="ssdt.ivy.jar.src" value="http://ivy.ssdt.nwoca.org/repository/ivy/ivy.jar"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
21
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
22 <mkdir dir="${user.home.ant.lib}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
23
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
24 <get dest="${user.home.ant.lib}/ivy.jar"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
25 src="${ssdt.ivy.jar.src}"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
26 usetimestamp="true"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
27
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
28 <get dest="${ssdt.devel.kit}/ivy-ant.xml"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
29 src="${ssdt.devel.kit.src}/ivy-ant.xml"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
30 usetimestamp="true"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
31 <import file="${ssdt.devel.kit}/ivy-ant.xml"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
32
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
33 <get dest="${ssdt.devel.kit}/antcontrib-ant.xml"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
34 src="${ssdt.devel.kit.src}/antcontrib-ant.xml"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
35 usetimestamp="true"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
36 <import file="${ssdt.devel.kit}/antcontrib-ant.xml"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
37
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
38 <get dest="${ssdt.devel.kit}/ssdt-common-build.xml"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
39 src="${ssdt.devel.kit.src}/ssdt-common-build.xml"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
40 usetimestamp="true"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
41
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents: 3
diff changeset
42 <import file="${ssdt.devel.kit}/ssdt-common-build.xml"/>
2
fa285a2842d8 Test proof of importing
smith@nwoca.org
parents: 1
diff changeset
43
fa285a2842d8 Test proof of importing
smith@nwoca.org
parents: 1
diff changeset
44
1
73a34884e523 Initial bootstrap
smith@nwoca.org
parents:
diff changeset
45 </project>