Do you think it is a good practice to remove every transitive dependencies that can be found in a maven pom?

Example:
My project depends on A and B.
B is also a transitive dependency of A.
Should I keep B in my pom or remove it ?

What is the best:
having all known jars, even transitive one, declared on the pom or keeping only the top level jars ?

This is a little bit subjective, but I am trying to clean some huge poms (parent and children) with a lot of transitive dependencies. I want to keep my pom as simple as possible, but I want also them to be maintainable.

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

If your project has direct dependencies on B then you should keep it even if B is a transitive dependency of A. It can be that in the next version A won't use B an you'll have to restructure the pom.xml.

Generally, Maven dependencies should reflect the logical project dependencies.

ps. You may find this useful.

link|improve this answer
Thanks for the answer and the link. I like this advice: 'reflect the logical project dependencies' – Guillaume Nov 22 '10 at 9:08
feedback

It depends on the dependencies. I would prefer to remove the transitive dependencies, and explicitly leave them if there is a good reason for that. Here is why I prefer to remove the transitive dependencies:

  • I try to keep the pom as simple as possible. With the transitive dependencies the Maven pom becomes more complex.
  • mvn dependency:tree on the project hides the information that A depends on B, and this information could be essential on upgrade of A.
  • the information that the project needs both A and B is redundant, because this information is already in the pom descriptor of project A (B is dependency of A).
  • Generally, if you have explicit dependency to A, you must declare its version (say A1) somewhere in your pom hierarchy. This might cause you trouble. If you upgrade B (to say B2), B2 has upgraded to A2, and you do not upgrade to A2, your could end up with the bug in your app. If you trust the vendor of B (e.g. same company) and have the dependencies of B transitively included, you will not include that bug.

It would make sense to include a dependency explicitly in the following case: You have dependencies B and C, and they depend on different versions of A. In this case you have to choose a version of A and explicitly define A.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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