Maven 编译打包报错:程序包org.junit不存在 Error:(3, 29) java: 程序包org.junit.jupiter.api不存在 IDEA

报错的原因是java.junit.的版本问题,IDEA里默认的版本为3.8.1,修改为高版本就可以了,因为3.x使用的为编程的方式,4.x以后为注解的形式。
1、双击打开pom.xml文件。
Maven 编译打包报错:程序包org.junit不存在 Error:(3, 29) java: 程序包org.junit.jupiter.api不存在 IDEA_第1张图片
2、在org.junit.vintage 依赖后面补充一段

Maven 编译打包报错:程序包org.junit不存在 Error:(3, 29) java: 程序包org.junit.jupiter.api不存在 IDEA_第2张图片

代码块如下

<dependency>
    <groupId>org.junit.jupiter</groupId>
    <artifactId>junit-jupiter-api</artifactId>
    <version>5.5.0</version>
    <scope>test</scope>
</dependency>

3、大功告成。

你可能感兴趣的:(Maven 编译打包报错:程序包org.junit不存在 Error:(3, 29) java: 程序包org.junit.jupiter.api不存在 IDEA)