Skip to content

Commit

Permalink
[SUREFIRE-1432] trimStackTrace = false by default
Browse files Browse the repository at this point in the history
  • Loading branch information
dfa1 authored and Tibor17 committed Mar 29, 2022
1 parent a38bfcc commit 32f7dd3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Expand Up @@ -656,7 +656,7 @@ public abstract class AbstractSurefireMojo
*
* @since 2.2
*/
@Parameter( property = "trimStackTrace", defaultValue = "true" )
@Parameter( property = "trimStackTrace", defaultValue = "false" )
private boolean trimStackTrace;

/**
Expand Down
Expand Up @@ -31,6 +31,9 @@
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<trimStackTrace>true</trimStackTrace>
</configuration>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit 32f7dd3

Please sign in to comment.