blob: 107dcb2b004c36cb17b4d6d2c9aaa7650bdd5e42 [file] [log] [blame]
<?xml version="1.0"?>
<project name="project" default="workspaceBinaries">
<description>
Build the jarprocessor-ant.jar by gathering up the results of a workspace build from bin_ant.
</description>
<target name="workspaceBinaries" description="Jar up the binaries that were compiled by the jdt builder" >
<mkdir dir="lib" />
<delete file="lib/jarprocessor-ant.jar" failonerror="false"/>
<jar destfile="lib/jarprocessor-ant.jar" basedir="bin_ant"/>
</target>
</project>