Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to stop INFO level log in maven assembly plugin

When Maven RUNS the Assembly plugin it gives lot of output of INFO level. can any body suggest how to change the Level of Plugin to WARN or ERROR rather then INFO.

like image 777
Mubasher Avatar asked Sep 29 '22 11:09

Mubasher


1 Answers

Apparently this is a bug in the logging component of the Maven assembly plugin. The solution is to use a later version of the plugin - for example, version 2.5.5. So add the following to your pom.xml:

<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.5</version>
like image 76
mrjmh Avatar answered Oct 05 '22 06:10

mrjmh