其他分享
首页 > 其他分享> > IDEA报错Failed to execute goal

IDEA报错Failed to execute goal

作者:互联网

debug后报错:
Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test (default-test)

在ponm.xml中加入如下配置:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
</plugins>
</build>

标签:execute,surefire,maven,Failed,报错,test,apache
来源: https://blog.51cto.com/14074978/2387061