How do I run JUnit 5 integration tests with the Maven Failsafe plugin?
The Maven Failsafe plugin won't find my JUnit 5 integration tests when I'm running the command mvn clean failsafe:integration-test , although it can find the files. I have the junit-jupiter-api and junit-jupiter-engine as test dependencies: <properties> <junit.jupiter.version>5.0.1</junit.jupiter.version> </properties> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine<