blob: fbed0e92b993a1af847992ea650d1b5eda25a6fc [file] [log] [blame]
<?xml version="1.0"?>
<!--
======================================================================
Properties that must be passed to this script: base.install.dir
dependencyTargets local.cache.dir dependency.properties
======================================================================
-->
<project
name="test"
default="get">
<target
name="get">
<antcall
target="getAndInstall">
<param
name="groupId"
value="emf"/>
</antcall>
<antcall
target="getAndInstall">
<param
name="groupId"
value="emfxsd"/>
</antcall>
<antcall
target="getAndInstall">
<param
name="groupId"
value="gef"/>
</antcall>
<antcall
target="getAndInstall">
<param
name="groupId"
value="dtp"/>
</antcall>
<antcall
target="getAndInstall">
<param
name="groupId"
value="eclipse"/>
</antcall>
<antcall
target="getAndInstall">
<param
name="groupId"
value="eclipseTestFramework"/>
</antcall>
<antcall
target="getAndInstall">
<param
name="groupId"
value="tomcat.5"/>
</antcall>
<antcall
target="getAndInstall">
<param
name="groupId"
value="jonas.4"/>
</antcall>
<antcall
target="getAndInstall">
<param
name="groupId"
value="oagis.release"/>
</antcall>
<antcall
target="getAndInstall">
<param
name="groupId"
value="oagis.wsdl"/>
</antcall>
<antcall
target="getAndInstall">
<param
name="groupId"
value="jsf.1_1"/>
</antcall>
<antcall
target="getAndInstall">
<param
name="groupId"
value="wtp"/>
</antcall>
<antcall
target="getAndInstall">
<param
name="groupId"
value="wtp-wst-test"/>
</antcall>
<antcall
target="getAndInstall">
<param
name="groupId"
value="wtp-jst-test"/>
</antcall>
</target>
<target
name="getAndInstall">
<ant
antfile="${dependencyTargets}"
target="checkDependency">
<property
name="groupId"
value="${groupId}"/>
</ant>
<ant
antfile="${dependencyTargets}"
target="installDependency">
<property
name="groupId"
value="${groupId}"/>
<property
name="install.destination"
value="${base.install.dir}"/>
</ant>
</target>
</project>