blob: 392c62e5f526e8f3736d74c220ade1daf53e23ec [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
david_williamsd913e922006-11-13 07:24:21 +00005 dependencyTargets
6 local.cache.dir
7 dependency.properties
david_williams42f9b242006-11-27 18:45:14 +00008
david_williamsd913e922006-11-13 07:24:21 +00009
10 ====================================================================== -->
11<project
12 name="test"
13 default="get">
ndaib8cedc82005-09-13 18:00:32 +000014
david_williamsd913e922006-11-13 07:24:21 +000015 <target name="get">
16 <antcall target="getAndInstall">
17 <param
18 name="groupId"
19 value="emf" />
20 </antcall>
21 <antcall target="getAndInstall">
22 <param
23 name="groupId"
24 value="gef" />
25 </antcall>
26 <antcall target="getAndInstall">
27 <param
28 name="groupId"
29 value="jem" />
30 </antcall>
31 <antcall target="getAndInstall">
32 <param
33 name="groupId"
34 value="dtp" />
35 </antcall>
36 <antcall target="getAndInstall">
37 <param
38 name="groupId"
39 value="eclipse" />
40 </antcall>
41 <antcall target="getAndInstall">
42 <param
43 name="groupId"
44 value="eclipseTestFramework" />
45 </antcall>
ndaib8cedc82005-09-13 18:00:32 +000046
47
david_williamsd913e922006-11-13 07:24:21 +000048 </target>
49
50
51 <target name="getAndInstall">
52 <ant
53 antfile="${dependencyTargets}"
54 target="checkDependency">
55 <property
56 name="groupId"
57 value="${groupId}" />
58 </ant>
59 <ant
60 antfile="${dependencyTargets}"
61 target="installDependency">
62 <property
63 name="groupId"
64 value="${groupId}" />
65 <property
66 name="install.destination"
67 value="${base.install.dir}" />
68 </ant>
69 </target>
ndaib8cedc82005-09-13 18:00:32 +000070
71
72
73
74</project>
75