blob: 29bb3956cfa125ee47e80da2c35be54e96706749 [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
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">
ndai8ab09532006-03-29 08:48:53 +000016
17 <antcall target="getAndInstall">
ndai91f5c9b2006-03-12 13:56:45 +000018 <param name="groupId" value="emf" />
19 </antcall>
20 <antcall target="getAndInstall">
21 <param name="groupId" value="gef" />
22 </antcall>
23 <antcall target="getAndInstall">
24 <param name="groupId" value="jem" />
25 </antcall>
26 <antcall target="getAndInstall">
david_williamsd913e922006-11-13 07:24:21 +000027 <param name="groupId" value="wtp" />
david_williamsae0e4cb2006-11-11 02:55:51 +000028 </antcall>
29 <antcall target="getAndInstall">
30 <param name="groupId" value="dtp" />
31 </antcall>
32 <antcall target="getAndInstall">
ndai91f5c9b2006-03-12 13:56:45 +000033 <param name="groupId" value="eclipse" />
34 </antcall>
35 <antcall target="getAndInstall">
36 <param name="groupId" value="eclipseTestFramework" />
37 </antcall>
ndai91f5c9b2006-03-12 13:56:45 +000038
39 </target>
40
ndai91f5c9b2006-03-12 13:56:45 +000041 <target name="getAndInstall">
ndai8ab09532006-03-29 08:48:53 +000042
ndai91f5c9b2006-03-12 13:56:45 +000043 <ant antfile="${dependencyTargets}" target="checkDependency">
44 <property name="groupId" value="${groupId}" />
45 </ant>
46 <ant antfile="${dependencyTargets}" target="installDependency">
47 <property name="groupId" value="${groupId}" />
48 <property name="install.destination" value="${base.install.dir}" />
49 </ant>
david_williamsae0e4cb2006-11-11 02:55:51 +000050
ndai91f5c9b2006-03-12 13:56:45 +000051 </target>
52
ndai91f5c9b2006-03-12 13:56:45 +000053</project>
54