我有一个build.xml
应该动态接收该depends
字段的参数。我在其他一些参数中定义了这个参数,app.xml
例如:
ops=op1, op2, op3,op4,op5,.... opn
然后我将它app.xml
导入build.xml
并想在ops
那里使用参数。
<project name="Project" basedir="." default="help">
<target name="test" depends="{$ops}" description="executea series of commands in ant">
<echo message="batch operation job done. tasks = {$ops}"/>
</target>
</project>
如何将参数从一个 ant 文件传递到另一个文件?