<dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>5.0-SNAPSHOT</version> <scope>test</scope></dependency>错误找不到神器 junit:junit:jar:5.0-快照 -> [帮助 1]来自智能的屏幕截图尝试:mvn 清理和安装不起作用文件 ->清理缓存并重新启动不起作用删除 .m2 目录不起作用。
1 回答
隔江千里
TA贡献1906条经验 获得超10个赞
如果你想使用JUnit5,请使用下面的依赖关系 -
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.4.1</version>
<scope>test</scope>
</dependency>
而且,如果您想使用JUnit4,请使用下面的依赖关系 -
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
添加回答
举报
0/150
提交
取消