Skip to main content
summaryrefslogtreecommitdiffstats
blob: 04418e08a9ee3541367ebf94902867dc0f33ba3d (plain) (blame)
1
2
3
4
5
6
7
8
9
<project default="all">
	<target name="all" depends="fails, echos"/>
	<target name="fails">
		<jar jarfile="jar16.jar" basedir="doesNotExist"/>
	</target>
	<target name="echos">
		<echo>Still echo on failure</echo>
	</target>
</project>

Back to the top