Я хотел бы сделать что-то вроде этого
<target name="clean" description="clean">
<if>
<available file="${build}" type="dir" />
<then>
<delete dir="${build}" />
</then>
</if>
</target>
В соответствии с предложениями, найденными на stackoverflow.com, я загрузил ant -contrib-1.0b3.jar и поместил его в мой путь
Кроме того, в разделе Ant Конфигурация сборки, в classpath, у меня есть
При запуске my Ant script я все равно получаю
BUILD FAILED
C:\Repositories\blah\build.xml:60: Problem: failed to create task or type if
Cause: The name is undefined.
Action: Check the spelling.
Action: Check that any custom tasks/types have been declared.
Action: Check that any <presetdef>/<macrodef> declarations have taken place.
Что мне не хватает? Просьба сообщить