michael-o commented on code in PR #670: URL: https://github.com/apache/maven-surefire/pull/670#discussion_r1434008789
########## maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java: ########## @@ -679,6 +679,16 @@ public abstract class AbstractSurefireMojo extends AbstractMojo implements Suref @Parameter(property = "enableAssertions", defaultValue = "true") private boolean enableAssertions; + /** + * Flag for including/excluding system-out and system-err elements in xml reports. + * <br> + * True by default. + * + * @since 3.0.0 + */ + @Parameter(property = "enableOutputElements", defaultValue = "true") + private boolean enableOutputElements; Review Comment: Please rename to `enableOutErrElements` this will better reflect the intent w/o even reading the docs. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org