A SLF4J implementation which delegates to maven-plugin logging toolkit. Particularily useful when maven-plugin dependencies use slf4j, cause their logs aren"t available as maven-plugin logs.
com.googlecode.slf4j-maven-plugin-log slf4j-maven-plugin-log 1.0.0
For optimal integration into your maven plugin, you"ll need to bind maven-plugin logger into SLF4J StaticLoggerBinder at the early beginning of your Mojo "execute" method :
```
public void execute() throws MojoExecutionException, MojoFailureException {
// bind slf4j to maven log
StaticLoggerBinder.getSingleton().setLog(getLog());
// your stuff here
...
}
```