This is a structure of my multi-module project:

/root
  /api dependencies: slf4j
  /foo dependencies: slf4j-log4j12, log4j

In other words, module api uses slf4j for logging purposes. It doesn't know what the implementation of logging facility will be. Module foo adds slf4j-log4j12 and log4j in order to implement the logging. Pretty simple.

Now I'm running maven-dependency-plugin:analyze-only and this is what it says for module foo:

[WARNING] Unused declared dependencies found:
[WARNING]    org.slf4j:slf4j-log4j12:jar:1.6.1:compile
[WARNING]    log4j:log4j:jar:1.2.16:compile

Meaning that the plugin doesn't understand that foo really needs these dependencies. How can I solve the problem?

link|improve this question

Why adding another module which manages dependencies when dependency management is done by Maven? It's Maven's strongest point – Boris Pavlović Feb 7 '11 at 8:37
feedback

2 Answers

up vote 5 down vote accepted

What happens if you give those dependencies a runtime scope instead of compile?

If you've defined them as compile-time dependencies I think the dependency plugin will think they are needed for the compile when they're really not. But you only need the slf4-log4j and log4j JAR files at runtime.

Edit: You may need to set the ignoreNonCompile option:

http://maven.apache.org/plugins/maven-dependency-plugin/analyze-mojo.html

link|improve this answer
Good idea, but the result is the same :( – yegor256 Feb 7 '11 at 9:09
@yegor256 I've just edited my answer. There is an 'ignoreNonCompile' flag on the analyze task, you may need to set that. – Phill Sacre Feb 7 '11 at 9:12
Now it works :) Many thanks! – yegor256 Feb 7 '11 at 9:23
feedback

Have you tried setting the scope of slf4j-log4j12 and log4j to runtime?
See maven dependency scope

link|improve this answer
Yes, I did. The result is the same.. – yegor256 Feb 7 '11 at 9:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.