blob: 04418e08a9ee3541367ebf94902867dc0f33ba3d [file] [log] [blame]
<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>