0%

解决IDEA卡住resolving maven dependencies, Failed to resolve org.junit.platform:junit-platform-launcher:1.5.2

IntelliJ IDEA 版本:Ultimate 2019.1

spring-boot-starter-parent: 2.2.0.RELEASE

我们在运行 test case 时,会一直卡住,resolving maven dependencies… org.junit.platform:junit-platform-launcher:1.5.2,超时以后就 Failed 了。

这是 IDEA 的一个bug,解析 artifact 时,没有用到 maven 的 user settings file

解决办法:

在 pom.xml 文件中添加如下依赖:

1
2
3
4
5
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<scope>test</scope>
</dependency>