Due to company policy, my project must inherit from a parent POM, which I cannot change. The parent POM defines the following surefire plugin in the pluginManagement
section:
<build>
<pluginManagment>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit47</artifactId>
<version>3.0.0-M4</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</dependencyManagement>
</build>
This forces the surefire Provider to JUnit Core (4.7+). However, my project uses JUnit 5.7.0 exclusively. I can run unit tests from the IDE, no problem. But when I run mvn clean test
, none of the unit tests are detected:
[INFO] Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
- To debug, I removed the reference to the parent POM and copied the contents of the parent POM to my project's POM and got the same results. When I deleted the surefire plugin definition above from
pluginManagement
, everything worked as expected. All tests detected and run. - Back to the original setup with parent POM, in my
pluginManagement
section, I tried overridingmaven-surefire-plugin
without thesurefire-junit47
dependency. I added ajunit-platform-surefire-provider
dependency, but get aForkedProcessEvent
error, since both JUnit 4 and 5 providers conflict. It seems like my dependency is just added to the one from parent POM.
How can I exclude or override the parent POM's maven-surefire-plugin
dependency from the child POM?
- maven version: 3.6.3
- maven compiler version: 3.8.1