如果一个模块发生故障,maven force会继续

时间:2013-07-30 09:18:55

标签: maven

我有一个包含多个模块的'master'pom文件。即使一个模块出现故障,我希望maven继续构建,而不是跳过其余模块。我应该使用哪个选项/配置?感谢

2 个答案:

答案 0 :(得分:65)

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

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 .

答案 1 :(得分:26)

您可以使用命令行选项:

--fail-at-end

应该是你的朋友。