作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 pom.xml 文件,其中包含一些由 gmaven-plugin 运行的常规代码。
我想检测是否缺少设置,然后 maven 以“BUILD FAILURE”退出。
我也希望能够显示错误消息,但我可以手动执行此操作,所以没什么大不了的。
这有效但非常丑陋(因为它让 maven 说“异常(exception):/为零”)
testResult = true
if (testResult) {
println "good keep going"
} else {
println "bad make maven fail"
someVal = 1.0 / 0.0
}
最佳答案
您始终可以显式抛出异常,例如:
throw new RuntimeException('build is failing! call the fire brigade!');
关于gmaven-plugin - 如何让 gmaven-plugin groovy 代码导致 maven 失败退出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36508336/
我是一名优秀的程序员,十分优秀!