我试图用 Maven 构建一个简单的 Java 项目。在我的 pom 文件中,我声明 JUnit 4.8.2是唯一的依赖项。Maven 仍然坚持使用 JUnit 版本3.8.1。我该怎么补救?
这个问题在编译失败中表现出来: “ package org.junit 不存在”。这是因为我的源代码中有 import 语句。JUnit 4中正确的包名称。* is org.junit.* while in version 3.* it is junit.Framework.*
我想我已经找到了关于 http://maven.apache.org/plugins/maven-surefire-plugin/examples/junit.html问题根源的文档,但是那里的建议似乎是针对 Maven 专家的。我不知道该怎么办。