基本上,我想模仿apply
任务,但我没有传递executable
,而是想通过一项蚂蚁任务并提出类似的内容:
<project>
<target name="my-task">
<!--target definition-->
<target/>
<target name="my-task-on-files">
<apply task="my-task">
<srcfile/>
<targetfile/>
<fileset dir="." includes="*.xml"/>
</apply>
</target>
</project>
问题是apply
必须task
属性,但只有executable
。
我需要一个不需要ant-contrib
的解决方案。