问题:maven install的时候报错
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.20.1:test (default-test) on project o2o: There are test failures.

百度了下,发现是maven-surefire-plugin插件的问题,解决方法如下
字pom.xml中修改maven-surefire-plugin插件配置
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20.1</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
这样就可以跳过测试内容。
再install一次,就可以成功编译出war包了。
本文介绍了一种在使用Maven进行项目安装时遇到的错误及其解决方案。错误来源于maven-surefire-plugin插件,通过在pom.xml文件中配置跳过测试的方法解决了问题。
4779

被折叠的 条评论
为什么被折叠?



