Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.22.1:test (default-test) on project api: There are test failures.解决方法

完整日志:

Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.22.1:test (default-test) on project api: There are test failures.
Please refer to E:\maven\apache-maven-3.8.4\workspace\fmmall\api\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.

 

解决方法:

在响应的报错子项目(项目)中添加plugin:

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

 

刷新maven包后重新打包:

 

 

 

打包成功!

 

 

 

 

参考资料:

https://blog.csdn.net/ximaiyao1984/article/details/122880215

https://blog.csdn.net/kidkid1208/article/details/107763611

 
posted @ 2022-08-01 11:35  临易  阅读(203)  评论(0编辑  收藏  举报