springboot2.2.6启动test时总是卡在Maven导入依赖

启动springboot2.2.6Test测试时,会存在启动失败的情况,Maven依赖导入失败,窗口会卡住

在高版本的springboot启动Test时会发现缺少依赖,idea2018会一直卡在导入依赖的界面,后台强制关闭idea,再重启idea导入下面的依赖就可解决。这个坑卡了我很久。。。难受!!!
springboot2.2.6启动test时总是卡在Maven导入依赖_第1张图片

导入下面依赖

<dependency>
    <groupId>org.junit.platformgroupId>
    <artifactId>junit-platform-launcherartifactId>
    <scope>testscope>
dependency>

在切回低版本springboot(例如:2.0.7)时,会发现springboot的Test导入测试类都会不一样,旧版本时用import org.junit.Test,新版本用import org.junit.jupiter.api.Test,这个需要注意一下。

你可能感兴趣的:(springboot,Maven)