maven报错:org.apache.maven.plugins:maven

今天在部署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]

[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

相关文章:

你感兴趣的文章:

标签云: