找不到工件junit:unit:jar:5.0-SNAPSHOT

时间:2019-04-08 15:36:46

标签: java maven intellij-idea

<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>5.0-SNAPSHOT</version>
    <scope>test</scope>
</dependency>

错误

  

找不到工件junit:junit:jar:5.0-SNAPSHOT-> [帮助1]

IntelliJ的屏幕截图

enter image description here

尝试:

  1. mvn清理和安装无效

  2. 文件->清除缓存并重新启动无效

  3. 删除.m2目录无效。

1 个答案:

答案 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>