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

retiring this branch

parent 630e76b3
No related branches found
No related tags found
No related merge requests found
<?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="gef" />
</antcall>
<antcall target="getAndInstall">
<param
name="groupId"
value="eclipse" />
</antcall>
<antcall target="getAndInstall">
<param
name="groupId"
value="eclipseTestFramework" />
</antcall>
<!-- for patch builds, also get a whole released version to
compile against -->
<antcall target="getAndInstall">
<param
name="groupId"
value="wtp" />
</antcall>
<!-- including tests -->
<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>
# it is faster, for local builds to not do normalization.
# it is only needed when pack200 is required
normalizeJarFiles=false
The files in this directory are not used
in production builds.
The are given here as examples of how someone might
override various build properties on their own machine,
to do "local builds".
These files, if used, should be in the directory named in
the LOCAL_BUILD_PROPERTIES_DIR environment variable, which
is set in the "commonVariations" file.
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