Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 107dcb2b004c36cb17b4d6d2c9aaa7650bdd5e42 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                                                                  
<?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>

Back to the top