Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 8 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.

share|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

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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