Skip to content

Instantly share code, notes, and snippets.

@framon
Last active May 25, 2021 07:34
Show Gist options
  • Save framon/6366345 to your computer and use it in GitHub Desktop.
Save framon/6366345 to your computer and use it in GitHub Desktop.
Show stack trace errors on console
mvn -Dsurefire.useFile=false -DtrimStackTrace=false test
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<useFile>false</useFile>
<trimStackTrace>false</trimStackTrace>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment