Making Maven quiet for a user
May 30, 2017
If you want to customize Maven to only show messages of WARNING or higher, put the following into a file in ~/.mavenrc
MAVEN_OPTS=-Dorg.slf4j.simpleLogger.defaultLogLevel=warn
Obviously this follows the standard SL4J logging naming conventions for error, debug, log, info, etc.