blob: 01203640929356d19fce91cdcc255a3679c55b5b [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project
basedir="."
default="createPack200s">
<target name="createPack200s">
<property
name="java15-home"
value="/home/data/users/david_williams/ibm-java2-ppc-50/jre" />
<property
name="buildDirectory"
value="${basedir}" />
<java
taskname="createDigestJob"
fork="true"
resultProperty="createDigestResult"
failonerror="true"
jvm="${java15-home}/bin/java"
classname="org.eclipse.equinox.launcher.Main"
maxmemory="2048m"
dir="${buildDirectory}">
<classpath>
<fileset dir="${eclipse.home}/plugins">
<include name="org.eclipse.equinox.launcher_*.jar" />
</fileset>
</classpath>
<arg
line="-application org.eclipse.update.core.siteOptimizer" />
<arg
line="-jarProcessor -verbose -outputDir ${updateSite} -pack ${updateSite}" />
</java>
</target>
<target name="checkArgs">
<fail message="eclipse.home and updateSite must be set.">
<condition>
<and>
<not>
<isset property="eclipse.home" />
</not>
<not>
<isset property="updateSite" />
</not>
</and>
</condition>
</fail>
</target>
</project>