如何在 Failsafe 中关闭第一行错误报告?
How do I turn off 1-line error reporting in Failsafe?
我不喜欢这个功能:https://maven.apache.org/surefire/maven-failsafe-plugin/newerrorsummary.html有没有办法关闭它以便报告完整的堆栈跟踪和错误?
将此添加到 surefire/failsafe configuration
元素:
<trimStackTrace>false</trimStackTrace>
我不喜欢这个功能:https://maven.apache.org/surefire/maven-failsafe-plugin/newerrorsummary.html有没有办法关闭它以便报告完整的堆栈跟踪和错误?
将此添加到 surefire/failsafe configuration
元素:
<trimStackTrace>false</trimStackTrace>