Skip to content
Snippets Groups Projects
Commit 31cdd85b authored by david_williams's avatar david_williams
Browse files

247565 [releng] Dali needs build/packaging for 2.1 release

parent 3143fb65
No related branches found
No related tags found
No related merge requests found
......@@ -83,6 +83,16 @@
name="base.install.dir"
value="${testRoot}" />
</ant>
<ant
antfile="${test.component.dir}/extradependencies.xml"
target="get">
<property
name="dependency.properties"
value="${buildDirectory}/maps/${env.RELENGDALI}/maps/dali.dependencies.properties" />
<property
name="base.install.dir"
value="${testRoot}" />
</ant>
<antcall
target="unzipTests" />
<antcall
......
<?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="jst" />
</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>
......@@ -51,11 +51,7 @@
name="groupId"
value="eclipseTestFramework" />
</antcall>
<antcall target="getAndInstallDropins">
<param
name="groupId"
value="wtp" />
</antcall>
<antcall
target="getAndInstallBase">
<param
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment