标题几乎说明了一切。我有一个使用Junit进行测试的项目,在构建项目(IntelliJ)时我收到了错误
Error:(3, 17) java: package org.junit does not exist
您是否在pom.xml中添加了依赖项?
是
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
范围是否正确? 是。我的测试类位于“test”文件夹中。
您是否尝试过强制版本?
是的,不会改变任何事情。
您是否尝试过重建/清理项目?
同样是的,也没有改变任何东西。 我真的很绝望,我甚至尝试完全重新安装Intellij,但它仍然无法正常工作。有人可以提供帮助吗?我/我在这里失踪了什么?