antビルドの実行中に次のようになります:
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 の 247 行目は<for param="file">
すでに定義され<taskdef resource="net/sf/antcontrib/antcontrib.properties"/>
ていますが、機能しませんでした。次に、具体的に以下を追加しましたが、まだ機能していません。
<taskdef resource="net/sf/antcontrib/antcontrib.properties">
<classpath>
<pathelement location="${env.ANT_HOME}/lib/ant-contrib-1.0b3.jar"/>
</classpath>
</taskdef>
C:\Softwares\apache-ant-1.8.4\libディレクトリにant-contrib-1.0b3.jarがあります。ここに何が欠けていますか?