blob: 8ec58f9bc356f279eca1f387c1390803aca2f85e [file] [log] [blame]
ndai91f5c9b2006-03-12 13:56:45 +00001<?xml version="1.0"?>
2<!-- ======================================================================
3 Properties that must be passed to this script:
4 base.install.dir
david_williams403beae2007-12-09 02:10:40 +00005 dependencyTargets
6 local.cache.dir
7 dependency.properties
8
david_williamsd3a70a72007-03-17 06:21:47 +00009 This file should not be used by the main WTP build
david_williams403beae2007-12-09 02:10:40 +000010 ====================================================================== -->
11<project
12 name="test"
13 default="get">
ndai91f5c9b2006-03-12 13:56:45 +000014
david_williams403beae2007-12-09 02:10:40 +000015 <target name="get">
ndai8ab09532006-03-29 08:48:53 +000016
david_williams0987a072007-02-20 18:27:24 +000017 <antcall target="getAndInstall">
david_williams403beae2007-12-09 02:10:40 +000018 <param
19 name="groupId"
20 value="emf" />
david_williams0987a072007-02-20 18:27:24 +000021 </antcall>
david_williams410e9452008-02-04 15:26:01 +000022 <antcall target="getAndInstall">
23 <param
24 name="groupId"
25 value="emfxsd" />
26 </antcall>
david_williams403beae2007-12-09 02:10:40 +000027 <antcall target="getAndInstall">
28 <param
29 name="groupId"
30 value="gef" />
31 </antcall>
32 <antcall target="getAndInstall">
33 <param
34 name="groupId"
35 value="dtp" />
36 </antcall>
37 <!-- This file should not be used by the main WTP build -->
38 <antcall target="getAndInstall">
39 <param
40 name="groupId"
41 value="wtp" />
42 </antcall>
david_williamsd3a70a72007-03-17 06:21:47 +000043
david_williams403beae2007-12-09 02:10:40 +000044 <antcall target="getAndInstall">
45 <param
46 name="groupId"
47 value="eclipse" />
48 </antcall>
49 <antcall target="getAndInstall">
50 <param
51 name="groupId"
52 value="eclipseTestFramework" />
53 </antcall>
ndai91f5c9b2006-03-12 13:56:45 +000054
david_williams403beae2007-12-09 02:10:40 +000055 </target>
ndai91f5c9b2006-03-12 13:56:45 +000056
david_williams403beae2007-12-09 02:10:40 +000057 <target name="getAndInstall">
ndai8ab09532006-03-29 08:48:53 +000058
david_williams403beae2007-12-09 02:10:40 +000059 <ant
60 antfile="${dependencyTargets}"
61 target="checkDependency">
62 <property
63 name="groupId"
64 value="${groupId}" />
65 </ant>
66 <ant
67 antfile="${dependencyTargets}"
68 target="installDependency">
69 <property
70 name="groupId"
71 value="${groupId}" />
72 <property
73 name="install.destination"
74 value="${base.install.dir}" />
75 </ant>
76
77 </target>
ndai91f5c9b2006-03-12 13:56:45 +000078
ndai91f5c9b2006-03-12 13:56:45 +000079</project>
80