Skip to content

Commit

Permalink
Do not trim stacktrace in case of an exception
Browse files Browse the repository at this point in the history
Signed-off-by: jansupol <[email protected]>
  • Loading branch information
jansupol authored and senivam committed Apr 25, 2022
1 parent b8e7c8b commit 1b93b50
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,8 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<!-- print full stack trace if error -->
<trimStackTrace>false</trimStackTrace>
<!-- for convenience reasons, 'argLine' should not be overridden in child poms. if needed, a property should be declared and used here -->
<argLine>
-Xmx${surefire.maxmem.argline}m -Dfile.encoding=UTF8 ${surefire.security.argline} ${surefire.coverage.argline}
Expand Down Expand Up @@ -614,6 +616,8 @@
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M3</version>
<configuration>
<!-- print full stack trace if error -->
<trimStackTrace>false</trimStackTrace>
<skipTests>${skip.tests}</skipTests>
<skipITs>${skip.tests}</skipITs>
<argLine>${failsafe.coverage.argline}</argLine>
Expand Down

0 comments on commit 1b93b50

Please sign in to comment.