blob: 419910459592bdcf9478d9cd8bbb83555ebb024b [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">
18 <param name="groupId" value="wst" />
19 </antcall>
ndai91f5c9b2006-03-12 13:56:45 +000020 <antcall target="getAndInstall">
21 <param name="groupId" value="emf" />
22 </antcall>
23 <antcall target="getAndInstall">
24 <param name="groupId" value="gef" />
25 </antcall>
26 <antcall target="getAndInstall">
27 <param name="groupId" value="jem" />
28 </antcall>
29 <antcall target="getAndInstall">
30 <param name="groupId" value="eclipse" />
31 </antcall>
32 <antcall target="getAndInstall">
33 <param name="groupId" value="eclipseTestFramework" />
34 </antcall>
ndai91f5c9b2006-03-12 13:56:45 +000035
36 </target>
37
ndai91f5c9b2006-03-12 13:56:45 +000038 <target name="getAndInstall">
ndai8ab09532006-03-29 08:48:53 +000039
40 <echo message="dependencyTargets: ${dependencyTargets}" />
41 <echo message="groupId: ${groupId}" />
42
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>
50 </target>
51
ndai91f5c9b2006-03-12 13:56:45 +000052</project>
53