As of Surefire 2.14 the forkMode
configuration setting has been deprecated. They even helpfully provide a mapping from some of the old settings to new settings here (http://maven.apache.org/surefire/maven-surefire-plugin/examples/fork-options-and-parallel-execution.html).
The problem is we use <forkMode>pertest</forkMode>
which does not have a mapping on that page, and my google-fu is failing to find the appropriate updated configuration for it.
What is the appropriate forkCount
, reuseForks
, parallel
and/or other configuration to replace the deprecated forkMode=pertest
setting?
parallel=classesAndMethods
. – Feathering