Maven Surefire not running JUnit 5 tests
问题 I've been trying to run JUnit 5 tests with Maven Surefire. However, it doesn't seem like Surefire is running any tests at all, even though I do have some, and in the default directory, too. This is the console output I'm getting: https://prnt.sc/ugo1xt Here are the relevant parts of the pom.xml: <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.7.0-M1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins>