Skip to main content
summaryrefslogblamecommitdiffstats
blob: f015ee79b570677352baa59272d55f280f208b45 (plain) (tree)
1
2
3
4
5
6
7




                                      

                                                                                                























                                                                                                                 
<?xml version="1.0" encoding="UTF-8"?>
<project>

	<target name="preBuild">
		<delete>
			<fileset dir="${build.home}/${build.target}/maps" includes="mylyn*.map">
				<exclude name="*${build.target}.map"/>
			</fileset>
		</delete>
	</target>

	<target name="preTestInstall">	
		<delete failonerror="false" includeemptydirs="true">
			<fileset dir="${install.dir}">
				<include name="features/org.eclipse.mylyn*/**"/>
				<include name="plugins/org.eclipse.mylyn*/**"/>
			</fileset>
		</delete>
	</target>

	<target name="postReport">
		<junitreport todir="${results.home}" >
			<fileset dir="${results.home}">
				<include name="TEST-*.xml" />
			</fileset>
			<report format="noframes" todir="${results.home}"/>
		</junitreport>
		<move file="${results.home}/junit-noframes.html" tofile="${results.home}/standalone-tests.html"/>
	</target>
	
</project>

Back to the top