Search code examples
mavenmaven-failsafe-plugin

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


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?


Solution

  • Add this to the surefire/failsafe configuration element:

    <trimStackTrace>false</trimStackTrace>