maven install时报错Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test

最近打包springboot项目的时候遇到一个错误 Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test

半天摸不着头脑,上网查询了一下说是什么测试类的错误   加上@Ignore就好了,但是我加上之后发现还是不行,于是研究了半天终于得以解决,现就将其解决方分享一下,愿对各位君有所帮助:

maven install时报错Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test

报错信息如下图

解决办法:

1、执行命令

    //命令打包(-Dmaven.test.skip=true 跳过测试)

1

mvn clean package -Dmaven.test.skip=true


2、pom文件,中加入

  
        org.apache.maven.plugins  
        maven-surefire-plugin  
        2.4.2  
          
          true  
          
  

#启动命令
nohub java -jar xxxx.jar >/dev/null 2>&1 & 

你可能感兴趣的:(java)