添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.10:test (default-test) on project web_nanchang: There are test failures.

[ERROR]

[ERROR] Please refer to E:\maven\web_nanchang\target\surefire-reports for the individual test results.

解决方法:

这是因为测试代码时遇到错误,它会停止编译。只需要在 pom.xml 的<project>里添加以下配置,使得测试出错不影响项目的编译。

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

原文转自:http://blog.csdn.net/lch_cn/article/details/8225448/ There are test failures. Please ref er to B:\BaiduNetdiskDownload\ssmbuild\ssmbuild\ target \ su ref ire-re ports for the ind ividual test result s 一般是在运行tomcat服务器 进行编译打包的时候出现这个错误 因为 test 文件出错(但是不影响正常的运行状态) 可以加上以下依赖包 <plugin> <groupId>org.ap [ERROR] Failed to execute goal org.apache. maven .plugins: maven - su ref ire-plugin:2.10: test (default- test ) on project web_nanchang: There are test failures. [ERROR] [ERROR] Please ref er to E:\ maven \web_na... IDEA install项目时报错Please ref er to…for the ind ividual test result s. 今天在idea install 项目时报错,如下: 解决 方法: 关闭 maven 的运行检查: 有灰色背景色即可。 打包 maven 项目时报错: \ target \ su ref ire-re ports for the ind ividual test result s,无法正常打包,原因为单元测试不通过, maven 打包就停止编译。 解决 办法: pom.xml中添加插件 &lt;plugin&gt; &lt;groupId&gt;org.apache. maven .plugins&lt;/groupId&gt... [ERROR] [ERROR] Please ref er to D:\File\workspace\izh-common-util\ target \ su ref ire-re ports for the ind ividual test result s. [ERROR] -> [Help 1] [ERROR] 这是因为测试代... 解决 target \ su ref ire-re ports for the ind ividual test result s 问题: idea reload maven 项目时: 报了如下错: Failed to execute goal org.apache. maven .plugins: maven - su ref ire-plugin:2.22.1: test (default- test ) on project Ivqip-server: There are test failures. Please ref er t 子工程中包含测试用例的都报这个错,然后网上找到方法添加 maven - su ref ire-plugin插件,添加了插件后,pom文件的<plugin>标签里面爆红,然后网上继续搜索说是这个插件和junit有关系。 麻烦,地址贴过来凑凑:学习 Maven Maven Su ref ire Plugin(JUnit篇) - 辵鵵 - 博客园 JUnit4.0(含)到JUnit4.7(不含)的版本,这样声明: <plugin> <groupId>org.apache. maven . maven 打包错误:Please ref er to xxx\ target \ su ref ire-re ports for the ind ividual test result s. maven install IDEA install项目时报错Please ref er to…for the ind ividual test result s 在使用 maven install项目的时候报这个错误,可以在运行的时候忽略检查即可。 解决 方法: 在pom.xml中增加 <build> <plugins> <plugin> <groupId>org.apache. maven .plugins</gr 在使用 maven 使用package打包的时候有时候会出现如下错误: There are test failures. Please ref er to XXX/ target / su ref ire-re ports for the ind ividual test result s 这个表示测试失败导致的打包失败, 解决 方法就是跳过 test 打包。 1.命令行形式(万能) 命令1:mvn package -D maven . test .skip=true(默认用这个) 命令2:mvn package -Dskip Test s