blob: afee59e5f36141d402c350979666c5d4091244d4 [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
david_williamsd3a70a72007-03-17 06:21:47 +00008
9 This file should not be used by the main WTP build
ndai91f5c9b2006-03-12 13:56:45 +000010 ====================================================================== -->
11<project name="test" default="get">
12
13 <target name="get">
ndai8ab09532006-03-29 08:48:53 +000014
david_williams0987a072007-02-20 18:27:24 +000015 <antcall target="getAndInstall">
16 <param name="groupId" value="orbitthirdparty" />
17 </antcall>
ndai8ab09532006-03-29 08:48:53 +000018 <antcall target="getAndInstall">
ndai91f5c9b2006-03-12 13:56:45 +000019 <param name="groupId" value="emf" />
20 </antcall>
21 <antcall target="getAndInstall">
22 <param name="groupId" value="gef" />
23 </antcall>
david_williams0987a072007-02-20 18:27:24 +000024 <antcall target="getAndInstall">
25 <param name="groupId" value="dtp" />
26 </antcall>
david_williamsd3a70a72007-03-17 06:21:47 +000027 <!-- This file should not be used by the main WTP build -->
ndai91f5c9b2006-03-12 13:56:45 +000028 <antcall target="getAndInstall">
david_williamsd913e922006-11-13 07:24:21 +000029 <param name="groupId" value="wtp" />
david_williamsae0e4cb2006-11-11 02:55:51 +000030 </antcall>
david_williamsd3a70a72007-03-17 06:21:47 +000031
david_williamsae0e4cb2006-11-11 02:55:51 +000032 <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