我怎样才能使 gmaven-plugin groovy 代码导致 maven 退出失败?
How can I make gmaven-plugin groovy code cause maven to exit with a failure?
我有一个 pom.xml 文件,其中包含一些 groovy 代码,由 gmaven-plugin 运行 编写。
我想检测是否缺少设置,然后使用 'BUILD FAILURE' 退出 Maven。
我也希望能够显示错误消息,但我可以手动执行此操作,所以没什么大不了的。
这有效但非常难看(因为它让行家说 "Exception: / by zero")
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!');
我有一个 pom.xml 文件,其中包含一些 groovy 代码,由 gmaven-plugin 运行 编写。 我想检测是否缺少设置,然后使用 'BUILD FAILURE' 退出 Maven。 我也希望能够显示错误消息,但我可以手动执行此操作,所以没什么大不了的。 这有效但非常难看(因为它让行家说 "Exception: / by zero")
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!');