码迷,mamicode.com
首页 > Web开发 > 详细

maven Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.10:

时间:2015-08-18 18:31:28      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

[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.
解决方法1:mvn package -Dmaven.test.failture.ignore=true安装,但没有成功。
解决方法2:使用插件,在相应pom.xml文件里面,修改

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
                <testFailureIgnore>true</testFailureIgnore>
            </configuration>
        </plugin>
    </plugins>
</build>添加了红色配置部分,成功。

maven Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.10:

标签:

原文地址:http://www.cnblogs.com/caicai-bird/p/4739547.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!