美文网首页
Java.SOP.maven错误解决方案

Java.SOP.maven错误解决方案

作者: InitialX | 来源:发表于2018-05-23 11:38 被阅读11次

    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>
    

    相关文章

      网友评论

          本文标题:Java.SOP.maven错误解决方案

          本文链接:https://www.haomeiwen.com/subject/ihcrjftx.html