的可选参数任务调用?
我希望能够将可选参数传递给 ant 任务调用,以便如果省略该参数,则该参数对于被调用目标显示为未设置(在条件下或使用 unless
或 if
属性)。我不知道是否设置了 optArg,因此我无法对参数进行硬编码。
示例:ant 目标 someTarget 需要强制参数 mandatoryArg 并支持可选参数 optArg。
我可以通过笨拙的复制来实现这一点,如下所示:
<if><equals arg1="${optArg}" arg2="true" />
<then>
<ant dir="someDir" target="someTarget" inheritAll="false">
<property name="mandatoryArg" value="42" />
<property name="optArg" value="true" />
</ant>
</then>
<else>
<ant dir="someDir" target="someTarget" inheritAll="false">
<property name="mandatoryArg" value="42" />
</ant>
</else>
</if>
我想省略 if 语句,以便 ant 调用不会重复,而不丢失 optArg 的可选性质。我已经找到了这个问题,它似乎涵盖了另一个问题。
我使用 Ant 1.7 和 ant-contrib。
有什么想法吗?谢谢!
编辑:我也接受解释为什么它确实不可能的答案。
I would like to be able to pass an optional parameter to an ant task call, so that it appears as unset to the called target if it is omitted (important in conditions or when using the unless
or if
attributes). I don't know if optArg is set, so I cannot hard-code the parameter.
Example: The ant target someTarget requires a mandatory parameter mandatoryArg and supports an optional parameter optArg.
I can achieve this by cludgy duplication like so:
<if><equals arg1="${optArg}" arg2="true" />
<then>
<ant dir="someDir" target="someTarget" inheritAll="false">
<property name="mandatoryArg" value="42" />
<property name="optArg" value="true" />
</ant>
</then>
<else>
<ant dir="someDir" target="someTarget" inheritAll="false">
<property name="mandatoryArg" value="42" />
</ant>
</else>
</if>
I would like to leave out the if statement so that the ant call is not duplicated, without losing the optional nature of optArg. I already found this question, which appears to cover a different problem.
I use Ant 1.7 and ant-contrib.
Any ideas? Thanks!
EDIT: I also accept answers that explain why it really isn't possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过使用
块构建属性集,然后在单个
任务中引用它来获得所需的行为稍后使用
调用You might be able to get the behavior you want by using the
<if>
block to build a property set, and then referencing it inside a single<ant>
task call later with<propertyset refid="whatever"/>