的可选参数任务调用?

发布于 2024-12-27 13:50:03 字数 1030 浏览 1 评论 0原文

我希望能够将可选参数传递给 ant 任务调用,以便如果省略该参数,则该参数对于被调用目标显示为未设置(在条件下或使用 unlessif 属性)。我不知道是否设置了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋叶绚丽 2025-01-03 13:50:03

您可以通过使用 块构建属性集,然后在单个 任务中引用它来获得所需的行为稍后使用 调用

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"/>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文