Reputation: 950
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.
Upvotes: 6
Views: 1861
Reputation: 978
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>
Upvotes: 5