Please refer to dump files (if any exist) [date]-jvmRun[N].dump, [date].dumpstream and [date]-jvmRun

  • Post author:
  • Post category:其他


maven项目打包时报错截图:

解决方法1 – mavne命令跳过test周期:

mvn package -Dmaven.test.skip=true

解决方法2 – pom文件修改:

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <testFailureIgnore>true</testFailureIgnore>
                </configuration>
            </plugin>

解决方法3 – idea中设置:



版权声明:本文为qq_42483257原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。