蚂蚁-贡献后任务不起作用



我的构建脚本中有以下任务。

<target name="upload" depends="init">
    <taskdef resource="net/sf/antcontrib/antlib.xml"/> 
    <post to="http://testapp.com/api/builds.format" verbose="true" wantresponse="true" maxwait="0">
        <prop name="file" value="./release/temp.ipa"/>
        <prop name="notes" value="release notes"/>
    </post>
</target>

我从我的 mac 机器运行此构建脚本。它给出以下错误。

Problem: failed to create task or type post
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.

我已经下载了ant-contrib-0.3.jar并将其复制到ANT_HOME/lib目录中,其中ANT_HOME是/usr/share/ant。

当我在这里搜索网络时,他们要求使用ant-contrib版本.jar以及使用源代码自己构建jar。但是我无法在该源中运行 ant 脚本,因为它会抛出一些错误。

有人可以指导我解决这个问题吗?

ant-contrib-0.3.jar是Ant-Contrib的一个非常古老的版本。其中不存在<post>任务。

相反,您会在最新版本的Ant-Contrib中找到<post>:ant-contrib-1.0b3

相关内容

  • 没有找到相关文章

最新更新