blob: fb40d911eb7214a2fe295009fcdd854c16a97258 [file] [log] [blame]
ndaib8cedc82005-09-13 18:00:32 +00001<?xml version="1.0"?>
2<!-- ======================================================================
3 Properties that must be passed to this script:
4 base.install.dir
5 dependencyTargets
6 local.cache.dir
7 dependency.properties
8 baseos
9 basews
10 basearch
11
12 ====================================================================== -->
13<project name="test" default="get">
14
15 <target name="get">
ndai05e159d2005-09-13 20:04:10 +000016 <antcall target="getAndInstall">
ndaib8cedc82005-09-13 18:00:32 +000017 <param name="groupId" value="emf" />
18 </antcall>
19 <antcall target="getAndInstall">
20 <param name="groupId" value="gef" />
21 </antcall>
22 <antcall target="getAndInstall">
23 <param name="groupId" value="jem" />
24 </antcall>
25 <antcall target="getAndInstall">
ndaia44be792006-10-23 08:31:46 +000026 <param name="groupId" value="dtp" />
27 </antcall>
28 <antcall target="getAndInstall">
ndaib8cedc82005-09-13 18:00:32 +000029 <param name="groupId" value="eclipse" />
30 </antcall>
31 <antcall target="getAndInstall">
32 <param name="groupId" value="eclipseTestFramework" />
33 </antcall>
34
david_williamsca525b62006-05-10 05:17:35 +000035
36 <!--
ndaib8cedc82005-09-13 18:00:32 +000037 <ant antfile="${dependencyTargets}" target="checkDependency">
38 <property name="groupId" value="piagent" />
39 </ant>
40 <ant antfile="${dependencyTargets}" target="checkDependency">
41 <property name="groupId" value="tomcat.4" />
42 </ant>
43 <ant antfile="${dependencyTargets}" target="checkDependency">
44 <property name="groupId" value="tomcat.5" />
45 </ant>
46 <ant antfile="${dependencyTargets}" target="checkDependency">
47 <property name="groupId" value="jonas.4" />
48 </ant>
49 <ant antfile="${dependencyTargets}" target="checkDependency">
50 <property name="groupId" value="oagis.release" />
51 </ant>
52 <ant antfile="${dependencyTargets}" target="checkDependency">
53 <property name="groupId" value="oagis.wsdl" />
ndai05e159d2005-09-13 20:04:10 +000054 </ant>
david_williamsca525b62006-05-10 05:17:35 +000055 -->
ndaib8cedc82005-09-13 18:00:32 +000056
57 </target>
58
59
60 <target name="getAndInstall">
61 <ant antfile="${dependencyTargets}" target="checkDependency">
62 <property name="groupId" value="${groupId}" />
63 </ant>
64 <ant antfile="${dependencyTargets}" target="installDependency">
65 <property name="groupId" value="${groupId}" />
66 <property name="install.destination" value="${base.install.dir}" />
67 </ant>
68 </target>
69
70
71
72
73</project>
74