You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rm...@apache.org on 2020/06/09 06:28:56 UTC

[maven-surefire] branch SUREFIRE-1798 created (now 19d0ac1)

This is an automated email from the ASF dual-hosted git repository.

rmannibucau pushed a change to branch SUREFIRE-1798
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git.


      at 19d0ac1  [SUREFIRE-1798] trimStackTrace=false by default

This branch includes the following new commits:

     new 19d0ac1  [SUREFIRE-1798] trimStackTrace=false by default

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-surefire] 01/01: [SUREFIRE-1798] trimStackTrace=false by default

Posted by rm...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rmannibucau pushed a commit to branch SUREFIRE-1798
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git

commit 19d0ac14a7573f29f598a53b834bd8d85ad2839a
Author: Romain Manni-Bucau <rm...@gmail.com>
AuthorDate: Tue Jun 9 08:28:31 2020 +0200

    [SUREFIRE-1798] trimStackTrace=false by default
---
 .../java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
index 38d34fb..c5c5e2f 100644
--- a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
+++ b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
@@ -678,7 +678,7 @@ public abstract class AbstractSurefireMojo
      *
      * @since 2.2
      */
-    @Parameter( property = "trimStackTrace", defaultValue = "true" )
+    @Parameter( property = "trimStackTrace", defaultValue = "false" )
     private boolean trimStackTrace;
 
     /**