我在构建脚本中使用了ant-contrib
<taskdef resource="net/sf/antcontrib/antcontrib.properties">
<classpath>
<pathelement location="ant/ant-contrib-0.6.jar"/>
</classpath>
</taskdef>
有效。但是当我使用ant
任务从另一个ant文件调用此脚本中的某个目标时,我收到错误。
<ant antfile="build.xml" target="make" dir="${client.project.location}/ant"/>
请帮我解决问题。感谢
答案 0 :(得分:0)
在您的代码中我们可以看到
<classpath>
<pathelement location="ant/ant-contrib-0.6.jar"/>
</classpath>
答案 1 :(得分:0)
我在调用ant task
时必须设置usenativebasedir="true"