Maven排除测试 - pom配置 报错surefire-reports for the individual test results.

Maven排除测试 - pom配置 报错surefire-reports for the individual test results.

今天本地package打包的时候发现测试不通过报错:

后面追加了一个依赖包解决了, 这里记录一下 file

配置复制:↓

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.13</version>
    <configuration>
        <testFailureIgnore>true</testFailureIgnore>
    </configuration>
</plugin>