How can you use Maven to run unit tests in parallel?
Move each test suite into a separate submodule.
Specify the Maven Surefire Plugin and add a configuration that sets the parallel element to true.
Implement the JUnit dependency and add a configuration that sets the parallel element to true.
It is not possible to do this.