spring5项目 引入junit592 报错Failed to resolve orgjunitvintagejunit-vintage-engine592
可能是因为 Maven 仓库中没有该版本的 JUnit 5 Vintage 引擎。您可以尝试更新 Maven 仓库或使用其他版本的 JUnit 5 Vintage 引擎。例如,使用 JUnit 5.7.2 版本的 Vintage 引擎,可以在 pom.xml 文件中添加以下依赖:
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.7.2</version>
<scope>test</scope>
</dependency>
如果仍然遇到问题,请检查您的网络连接或尝试使用其他 Maven 仓库。
原文地址: https://www.cveoy.top/t/topic/fuDB 著作权归作者所有。请勿转载和采集!