Cannot resolve org.junit.platform:junit-platform-commons:1.9.0
时间: 2023-03-23 07:02:33 浏览: 261
Maven更新失败,Cannot resolve plugin org.apache.maven.plugins:maven-compiler-plugin:3.1
3星 · 编辑精心推荐
这个错误通常是因为 Maven 或 Gradle 找不到名为 org.junit.platform:junit-platform-commons:1.9.0 的依赖库而引起的。
要解决此问题,你可以尝试以下方法:
1. 检查你的 Maven 或 Gradle 配置文件中是否正确配置了远程仓库地址,例如 Maven 的 settings.xml 或 Gradle 的 build.gradle 文件。
2. 检查你的依赖列表中是否正确包含了 org.junit.platform:junit-platform-commons:1.9.0。
3. 如果你使用的是 Maven,可以尝试在命令行中运行 mvn clean install 命令来重新构建你的项目。
4. 如果你使用的是 Gradle,可以尝试在命令行中运行 gradlew clean build 命令来重新构建你的项目。
如果你仍然无法解决这个问题,建议你检查你的网络连接和代理设置,或者参考其他类似问题的解决方案。
阅读全文