maven打包的时候错误,求帮助

img
Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.22.2:test (default-test) on project websocket: There are test failures.

Please refer to C:\Users\86156\IdeaProjects\springboot\websocket-master\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有错误吧?
pom里面编译忽略错误吧

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <testFailureIgnore>true</testFailureIgnore><!--编译测试类失败时跳过-->
                </configuration>
            </plugin>
        </plugins>
    </build>