When running a Maven mojo in debug mode (-X), it produces this output:
[DEBUG] Configuring mojo 'at.mic.maven.plugins:release-workflow-maven-plugin:1.0.0:release' with basic configurator -->
[DEBUG] (f) ...
[DEBUG] (f) password = ...
[DEBUG] (f) user = ...
[DEBUG] (f) ...
[DEBUG] -- end configuration --
I have defined user and password as Mojo parameters:
@Parameter(property = "password ", required = false)
String password ;
Is there a way to suppress this output of user and password in debug mode? If this is not possible for individual parameters, perhaps it is possible to prevent the complete parameter output? We're running Maven 3.6.3
Thanks in advance! Frank