怎么解决在用junit进行单元测试时: Failed to resolve org.junit.platform:junit-platform-launcher:1.6.3
时间: 2023-12-01 20:55:32 浏览: 408
解决java junit单元测试@Test报错的问题
看起来您在运行JUnit测试时遇到了依赖问题。您可以尝试添加JUnit平台启动器依赖项来解决此问题。您可以在项目的构建文件中添加以下依赖项:
```
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>1.6.3</version>
<scope>test</scope>
</dependency>
```
如果这不起作用,您可能需要检查您的Maven设置或Gradle设置是否正确配置,并确保您的本地存储库已正确更新。
阅读全文