57

我有一个包含多个模块的“主”pom 文件。即使一个模块失败,我希望 maven 继续构建,而不是跳过其余模块。我应该使用哪个选项/配置?谢谢

4

2 回答 2

90

最终失败应该适用于您的场景。

来自 Maven Specs 的基本定义:

--fail-at-end - if a particular module build fails, continue the rest of the reactor
           and report all failed modules at the end instead .
于 2013-07-30T09:44:43.890 回答
33

您可以使用命令行选项:

--fail-at-end

应该是你的朋友。

于 2013-07-30T09:25:08.430 回答