Eclipse抱怨丢失Junit jar,即使它已经在构建路径中

时间:2015-10-01 17:38:41

标签: java eclipse maven junit

我有以下Maven / Eclipse设置,并且我已经将junit添加为pom.xml中的编译时依赖项。

<dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>3.8.2</version>
</dependency>

有人可以澄清为什么Eclipse会提示我添加junit来构建路径吗?

谢谢

enter image description here

2 个答案:

答案 0 :(得分:2)

如果要使用注释,则需要JUnit 4.

<dependency>
  <groupId>junit</groupId>
  <artifactId>junit</artifactId>
  <version>4.12</version>
</dependency>

答案 1 :(得分:0)

请执行以下操作:

  1. 更新maven项目。

  2. 清理您的项目。

  3. 然后重新运行测试