在ant-contrib中使用“list”参数的“for”任务不起作用

时间:2013-10-14 08:55:27

标签: for-loop ant ant-contrib

我的构建脚本中有这样的构造:

<for list="item1,item2,item3,item4" param="theparam">
    <!-- some stuff to do -->
</for>

执行脚本时,我得到:

在For任务中使用的类型类net.sf.antcontrib.logic.ForTask无效,它没有公共迭代器方法

我正在使用ant-contrib 1.0b3。我在这里缺少什么?

2 个答案:

答案 0 :(得分:3)

无法重现您的问题。您使用的是什么版本的ANT?

实施例

$ ant -version
Apache Ant(TM) version 1.9.0 compiled on March 5 2013

$ ant
Buildfile: /home/mark/build.xml

run:
     [echo] param: one
     [echo] param: two
     [echo] param: three
     [echo] param: four

BUILD SUCCESSFUL
Total time: 0 seconds

的build.xml

<project name="ant-contrib-tasks" default="run">

    <taskdef resource="net/sf/antcontrib/antlib.xml"/>

    <target name="bootstrap">
        <mkdir dir="${user.home}/.ant/lib"/>
        <get dest="${user.home}/.ant/lib/ant-contrib.jar" src="http://search.maven.org/remotecontent?filepath=ant-contrib/ant-contrib/1.0b3/ant-contrib-1.0b3.jar"/>
    </target>

    <target name="run">
        <for param="theparam" list="one,two,three,four">
            <sequential>
                <echo message="param: @{theparam}"/>
            </sequential>
        </for>
    </target>

</project>

注意:

  • 特殊的“bootstrap”目标安装ant-contrib依赖。

答案 1 :(得分:0)

  1. 确保ant-contrib 1.0b3.jar目录
  2. 中存在{ANT_HOME}\lib
  3. 确保这两行位于build.xml文件
  4. 的顶部

    <taskdef resource="net/sf/antcontrib/antcontrib.properties"/>
    <taskdef resource="net/sf/antcontrib/antlib.xml"/>