Skip to content

Commit 613aa06

Browse files
Allow test reporter console to be enabled (#1224)
Allow users to override the default behavior for console log supression behavior. Users will be able to pass the property -DconsoleOutputReporter.disable=false to enable console output. Back-ported from: #1187 Signed-off-by: Jason Katonica <katonica@us.ibm.com>
1 parent a43da98 commit 613aa06

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
<maven.build.timestamp.format>yyyyMMdd</maven.build.timestamp.format>
2020
<jmh.benchmark>ibm.jceplus.jmh.RunAll</jmh.benchmark>
2121
<jmh.benchmark.skip>true</jmh.benchmark.skip>
22+
<consoleOutputReporter.disable>true</consoleOutputReporter.disable>
2223
</properties>
2324
<profiles>
2425
<profile>
@@ -221,7 +222,7 @@
221222
</includes>
222223
<reportFormat>plain</reportFormat>
223224
<consoleOutputReporter>
224-
<disable>true</disable>
225+
<disable>${consoleOutputReporter.disable}</disable>
225226
</consoleOutputReporter>
226227
<statelessTestsetInfoReporter
227228
implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5StatelessTestsetInfoTreeReporter">
@@ -354,7 +355,7 @@
354355
</includes>
355356
<reportFormat>plain</reportFormat>
356357
<consoleOutputReporter>
357-
<disable>true</disable>
358+
<disable>${consoleOutputReporter.disable}</disable>
358359
</consoleOutputReporter>
359360
<statelessTestsetInfoReporter
360361
implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5StatelessTestsetInfoTreeReporter">

0 commit comments

Comments
 (0)