My question goes in opposite direction of most questions regarding the same topic.
Is it possible to execute several JUnit test classes sequentially instead of in parallel using Eclipse Luna or Mars?
The reason for this is there are several integration tests using the same in-memory database instance, and each test class may create/drop tables according to its needs, so they may run in concurrency issues in different threads (while one test class drops on table in preparation for its execution, another can create the same table).
Essentially I want the same behavior as setting the Maven Surefire Plugin with reuseForks = false. It will take longer to run, but that is not a concern.