mvn install的时候出现的Please refer to dump files (if any exist) [date].dump

出现问题

Please refer to /Users/wanghaohao/Downloads/workspace/BigDataOss/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.

解决方式

添加代码,跳过test测试

主要代码:“< skip > true < /skip >”

<plugin>
         <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-compiler-plugin</artifactId>
          <version>3.6.1</version>
          <configuration>
               <source>1.8</source>
               <target>1.8</target>
               <skip>true</skip>
          </configuration>
 </plugin>

你可能感兴趣的:(数据库,linux,运维)