How do I turn off 1-line error reporting in Failsafe?

痴心易碎 提交于 2020-01-07 03:08:23

问题


I dislike this feature: https://maven.apache.org/surefire/maven-failsafe-plugin/newerrorsummary.html Is there a way to turn it off so it reports full stack traces and errors?


回答1:


Add this to the surefire/failsafe configuration element:

<trimStackTrace>false</trimStackTrace>


来源:https://stackoverflow.com/questions/33927267/how-do-i-turn-off-1-line-error-reporting-in-failsafe

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!