本文介绍了Maven Surefire插件“在启动分叉时发生错误,请在日志中检查输出".的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我收到以下错误
BUILD ERROR
Error occured in starting fork, check output in log
在运行junit测试用例时使用Maven 2.2.1和Surefire插件2.11时.
when using Maven 2.2.1 and Surefire plugin 2.11 while running junit test cases.
我该如何解决?
推荐答案
您需要设置surefire插件才能像这样使用<forkMode>once</forkMode>
:
You need to setup surefire plugin to use <forkMode>once</forkMode>
like this:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.5</version>
<configuration>
<skipTests>false</skipTests>
<testFailureIgnore>true</testFailureIgnore>
<forkMode>once</forkMode>
</configuration>
</plugin>
这篇关于Maven Surefire插件“在启动分叉时发生错误,请在日志中检查输出".的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!