You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ro...@apache.org on 2021/07/27 12:36:03 UTC

[activemq-artemis] branch main updated: NO-JIRA: make redirectTestOutputToFile config use the standard property to allow configuring on command line

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

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/main by this push:
     new 0cdd0c8  NO-JIRA: make redirectTestOutputToFile config use the standard property to allow configuring on command line
0cdd0c8 is described below

commit 0cdd0c8bd9050e203799cc0cbfa3f1d055fb7b26
Author: Robbie Gemmell <ro...@apache.org>
AuthorDate: Tue Jul 27 12:38:19 2021 +0100

    NO-JIRA: make redirectTestOutputToFile config use the standard property to allow configuring on command line
---
 pom.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index da4109c..4373fc3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -180,6 +180,8 @@
       <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
       <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
 
+      <maven.test.redirectTestOutputToFile>false</maven.test.redirectTestOutputToFile>
+
      <!--
 
        note for idea users:
@@ -1424,7 +1426,7 @@
                   <forkMode>once</forkMode>
                   <testFailureIgnore>${testFailureIgnore}</testFailureIgnore>
                   <runOrder>alphabetical</runOrder>
-                  <redirectTestOutputToFile>false</redirectTestOutputToFile>
+                  <redirectTestOutputToFile>${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
                   <argLine>${activemq-surefire-argline}</argLine>
                </configuration>
             </plugin>