在 Ant 中,如何使用异常/错误处理?
在 Apache Ant 中,我如何处理故障?
例如,如果我执行构建并且失败,我想在它退出之前调用一些进程。
基本上是 try/catch 类型的功能。
In Apache Ant, how can i handle a failure?
For example, if i perform a build and it fails, i want to invoke some process before it bails out.
Basically try/catch type functionality.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你不介意使用第三方库,Ant-Contrib 提供了
任务 -> http://ant-contrib.sourceforge.net/tasks/tasks/trycatch.htmlIf you don't mind using 3rd-party library, Ant-Contrib provides
<trycatch>
task -> http://ant-contrib.sourceforge.net/tasks/tasks/trycatch.html阅读有关侦听器的文档,然后构建您自己的侦听器来侦听
buildFinished 事件。
Read the documentation about listeners, and then build your own listener which listens to the
buildFinished
event.