以下是build.xml文件抛出错误中的代码。我用Google搜索并找到了一些解决方案,例如..添加ant contrib jar文件来解决问题。即使添加jar文件后也面临同样的问题。请参阅以下代码。
<target name="copyHtdocs" depends="init">
<export srcUrl="${svn.htdocs.url}" revision="HEAD" destPath="${htdocs.dir}" />
<export srcUrl="${svn.htdocs.url}" destPath="${htdocs.dir}"/>
</target>
添加了Ant-contrib jar文件: -
<taskdef resource="net/sf/antcontrib/antcontrib.properties">
<classpath>
<pathelement location="${libs.dir}/ant-contrib-0.6.jar" />
</classpath>
</taskdef>
错误: -
C:\source\xxxx\xxxx\build.xml:156: Problem: failed to create task or type export
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.
答案 0 :(得分:0)
&#34;出口&#34;不是作为ant-contrib扩展的一部分的任务
我怀疑你正在尝试导出git repo所以我建议使用这个ANT任务,而不是: