springboot打包出现Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.22.1:test

解决方法一种是直接在pom文件中配置


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

           

 

第二种方式是;

mvn clean package -Dmaven.test.skip=true

我是使用了第二种方法,感谢大佬,所以我自己转载记录了一下,原文链接来自:
原文链接:https://blog.csdn.net/yaomingyang/article/details/92799328

你可能感兴趣的:(第一次)