现象:
运行groovy测试类,一直使用的是低版本的junit-platform-engine-1.5.2.jar。即使在最外层强制升级版本也没有用
解决:
在最外层pom.xml引入高版本的父pom即可
XML
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.10.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>