Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e5729a87c8dda1e7585bbe96e6d9260d97f08869 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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"/>
		<eclipse.convertPath fileSystemPath="${basedir}/lib" property="resourcePath"/>
		<eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/>
	</target>
</project>

Back to the top