Apache ant não reconhece 'for' task / macro, embora eu tenha adicionado ant-contrib via taskdef

Eu estou ficando seguindo enquanto fazendo formiga build:

Build\build.xml:247: Problem: failed to create task or type
for
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.

build.xml linha 247 é<for param="file">

Já definido<taskdef resource="net/sf/antcontrib/antcontrib.properties"/>não funcionou. Então eu adicionei especificamente seguindo, mas ainda não está funcionando.

<taskdef resource="net/sf/antcontrib/antcontrib.properties">
        <classpath>
            <pathelement location="${env.ANT_HOME}/lib/ant-contrib-1.0b3.jar"/>
        </classpath>
    </taskdef>

eu tenhoant-contrib-1.0b3.jar aC: \ Softwares \ apache-ant-1.8.4 \ lib diretório.
O que está faltando aqui?

questionAnswers(2)

yourAnswerToTheQuestion