blob: 1eaae1d6d6d3526c2efc2808f8ba0423fe4c1226 [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
8 baseos
9 basews
10 basearch
11
12 ====================================================================== -->
13<project
14 name="test"
15 default="get">
ndaib8cedc82005-09-13 18:00:32 +000016
david_williamsd913e922006-11-13 07:24:21 +000017 <target name="get">
18 <antcall target="getAndInstall">
19 <param
20 name="groupId"
21 value="emf" />
22 </antcall>
23 <antcall target="getAndInstall">
24 <param
25 name="groupId"
26 value="gef" />
27 </antcall>
28 <antcall target="getAndInstall">
29 <param
30 name="groupId"
31 value="jem" />
32 </antcall>
33 <antcall target="getAndInstall">
34 <param
35 name="groupId"
36 value="dtp" />
37 </antcall>
38 <antcall target="getAndInstall">
39 <param
40 name="groupId"
41 value="eclipse" />
42 </antcall>
43 <antcall target="getAndInstall">
44 <param
45 name="groupId"
46 value="eclipseTestFramework" />
47 </antcall>
ndaib8cedc82005-09-13 18:00:32 +000048
49
david_williamsd913e922006-11-13 07:24:21 +000050 <!--
51 <ant antfile="${dependencyTargets}" target="checkDependency">
52 <property name="groupId" value="piagent" />
53 </ant>
54 <ant antfile="${dependencyTargets}" target="checkDependency">
55 <property name="groupId" value="tomcat.4" />
56 </ant>
57 <ant antfile="${dependencyTargets}" target="checkDependency">
58 <property name="groupId" value="tomcat.5" />
59 </ant>
60 <ant antfile="${dependencyTargets}" target="checkDependency">
61 <property name="groupId" value="jonas.4" />
62 </ant>
63 <ant antfile="${dependencyTargets}" target="checkDependency">
64 <property name="groupId" value="oagis.release" />
65 </ant>
66 <ant antfile="${dependencyTargets}" target="checkDependency">
67 <property name="groupId" value="oagis.wsdl" />
68 </ant>
69 -->
70
71 </target>
72
73
74 <target name="getAndInstall">
75 <ant
76 antfile="${dependencyTargets}"
77 target="checkDependency">
78 <property
79 name="groupId"
80 value="${groupId}" />
81 </ant>
82 <ant
83 antfile="${dependencyTargets}"
84 target="installDependency">
85 <property
86 name="groupId"
87 value="${groupId}" />
88 <property
89 name="install.destination"
90 value="${base.install.dir}" />
91 </ant>
92 </target>
ndaib8cedc82005-09-13 18:00:32 +000093
94
95
96
97</project>
98