一、问题描述
这个问题出现的情况是在打包的时候,在idea中右侧的maven栏中选择用package打包的时候,下方出现了下图所示错误:
具体报错如下:
Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.22.2:test (default-test) on project 项目名: There are test failures.
Please refer to E:\项目路径\target\surefire-reports for the individual test results.
Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream.
二、问题分析
测试类打包出错
三、解决方法
在打包的时候跳过测试类
代码如下:
<plugin> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
我们可以打开pom.xml文件,在下面的位置中添加代码,结果如下图所示。
然后我们再次打包就能看到报错消失了