blob: 0382f68337164c0d2b055b2b7c84c4a5adbaf79b [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/bfreeman/callisto/ibm-java2-ppc-50/jre" />
<property name="buildDirectory"
value="${basedir}" />
<java jar="${eclipse.home}/startup.jar"
fork="true"
jvm="${java15-home}/bin/java"
failonerror="true"
maxmemory="1024m"
dir="${buildDirectory}">
<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>