maven项目打包报错
Please refer to *** for the individual test results.
Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream.

解决办法:在plugins中添加,跳过测试阶段

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

更多推荐

maven项目打包报错Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[