标签:maven plugins surefire plugin test
今天在部署maven的项目的时候报 org.apache.maven.plugins:maven-surefire-plugin:2.7.1:test(default-test) on project错误 具体的是以下错误信息:
[ERROR] Failed to execute goalorg.apache.maven.plugins:maven-surefire-plugin:2.7.1:test (default-test) onproject newProject: There are test failures.
[ERROR]
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack traceof the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -Xswitch to enable full debug logging.
[ERROR]
[ERROR] For more information aboutthe errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR]
[ERROR] After correcting the problems, youcan resume the build with the command
这种每次Build 都是失败的,于是只能找办法解决,后来在网上找到了解决办法,在这里记录一下。。。遇到这种问题只需要在pom.xml加入以下代码就可以完美解决。。
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.6</version> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> </build>
这个问题应该是测试文件出了错。。直接跳过测试就可以咯。。。
maven报错:org.apache.maven.plugins:maven-surefire-plugin:2.7.1:test (default-test) on project
标签:maven plugins surefire plugin test
原文地址:http://blog.csdn.net/y353027520dx/article/details/45025707