<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>5.0-SNAPSHOT</version>
<scope>test</scope>
</dependency>
错误
找不到工件junit:junit:jar:5.0-SNAPSHOT-> [帮助1]
IntelliJ的屏幕截图
尝试:
mvn清理和安装无效
文件->清除缓存并重新启动无效
删除.m2目录无效。
答案 0 :(得分:2)
如果要使用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>