I want to prevent maven from displaying INFO messages, I want to see only WARNINGS and ERRORS (if any).
How can I achieve this, preferably by changing the command line that calls maven?
|
|
|
Running maven with the -q or --quiet parameter only shows errors. I don't know of a setting that also shows warnings, but no info level. |
|||||||
|
|
Unfortunately, even with maven 3 the only way to do that is to patch source code. Here is short instruction how to do that. Clone or fork Maven 3 repo: "git clone https://github.com/apache/maven-3.git" Edit org.apache.maven.cli.MavenCli#logging, and change
to
In current snapshot version it's at line 270 Then just run "mvn install", your new maven distro will be located in "apache-maven\target\" folder See this diff for the reference: https://github.com/ushkinaz/maven-3/commit/cc079aa75ca8c82658c7ff53f18c6caaa32d2131 |
|||
|
|
|
If you are using Logback, just put logback-test.xml file into src/test/resources directory.
|
|||
|
|
or
etc... as required can you tell I'm a sysadmin? ;-) |
|||
|
|