Java.SOP.maven错误解决方案

2018-05-23  本文已影响11人  InitialX

1.错误:“target\surefire-reports for the individual test results.”

测试的插件出现问题,在pom.xml中添加,忽略测试异常:
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <configuration>
        <testFailureIgnore>true</testFailureIgnore>
    </configuration>
</plugin>
上一篇下一篇

猜你喜欢

热点阅读