springboot项目,使用ApplicationTests做测试时提示错误如下:
上午 11:47 Error running 'ShiroDemoApplicationTests.contextLoads': Failed to resolve org.junit.platform:junit-platform-launcher:1.7.2
原因:IntelliJ IDEA版本和junit版本不适配
解决:
1.项目的pom.xml文件中添加如下依赖:
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<scope>test</scope>
</dependency>
2.调整两者版本为适配搭配,较麻烦一点,推荐用第一种方法处理。
点此欢迎光临我的个人网站【一几文星球】
微信公众号,欢迎关注,一起学习。