如果没有命令行参数,Ant 构建失败

发布于 2024-12-09 12:41:54 字数 70 浏览 0 评论 0原文

我在命令行将文件路径作为参数发送给 ant。如果参数不存在,我希望构建失败。有什么方法可以做到这一点?

谢谢!

I am sending a file path as a parameter to ant at command line. I want the build to fail if parameter doesnot exist. What is the way to do that?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

愿与i 2024-12-16 12:41:54

在目标上使用 if 属性,例如:

<project name="test" default="init">
    <target name="init" if="${path}">
        <!--This will only execute if ${path} is defined from the command line-->
    </target>
</project>

第二个选项:更详细

<project name="test" default="init">
    <target name="init">
      <fail message="Path is not set! Exiting ant script!">
        <condition>
          <not>
           <isset property="${path}"/>
          </not>
        </condition>
      </fail>
    </target>
</project>

Use the if attribute on a target e.g. :

<project name="test" default="init">
    <target name="init" if="${path}">
        <!--This will only execute if ${path} is defined from the command line-->
    </target>
</project>

Second option : more verbose

<project name="test" default="init">
    <target name="init">
      <fail message="Path is not set! Exiting ant script!">
        <condition>
          <not>
           <isset property="${path}"/>
          </not>
        </condition>
      </fail>
    </target>
</project>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文