当前位置: 代码迷 >> 综合 >> 进行单元测试时报错 — Failed to resolve org.junit.platform:junit-platform-launcher:1.5.2
  详细解决方案

进行单元测试时报错 — Failed to resolve org.junit.platform:junit-platform-launcher:1.5.2

热度:29   发布时间:2023-12-12 03:24:35.0

刚在学习SpringBoot时,进行测试,明明下午构建的项目就是正确的,但现在却报错:

 pom中的依赖也确定添加了:

<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope><exclusions><exclusion><groupId>org.junit.vintage</groupId><artifactId>junit-vintage-engine</artifactId></exclusion></exclusions>
</dependency>

在网上查了一圈,有前辈说是网络问题,然后,换成手机热点 重新测试,就成功了!!

  相关解决方案