Mubasher
Mubasher

Reputation: 950

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.

Upvotes: 6

Views: 1861

Answers (1)

mrjmh
mrjmh

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

Related Questions