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

What is the difference between dependencyManagement and dependencies? I have seen the docs at Apache Maven web site. It seems that a dependency defined under the dependencyManagement can be used in it's child modules without specifying the version.

For example:

A parent project (Pro-par) defines a dependency under the dependencyManagement:

<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8</version>
    </dependency>
 </dependencies>
</dependencyManagement>

Then in the child of Pro-par, I can use the junit :

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
    </dependency>
 </dependencies>

However I wonder if it is necessary to define junit in the parent pom? Why not define it directly in the needed module?

share|improve this question

2 Answers

up vote 49 down vote accepted

Dependency Management allows to consolidate and centralize the management of dependency versions without adding dependencies which are inherited by all children. This is especially useful when you have a set of projects (i.e. more than one) that inherits a common parent.

Another extremely important use case of dependencyManagement is the control of versions of artifacts used in transitive dependencies. This is hard to explain without an example. Luckily, this is illustrated in the documentation.

share|improve this answer
1  
So, its need to declare dependencies in child project pom's anyway even if they declared in parent project's pom at <dependencyManagement> section? Is it possible to make some kind of inheritance of dependencies? – psed Aug 23 '12 at 9:38
2  
Yes, you still need to define them in the child POM to show that you are using them. They are not actually included in the child projects just because they are in <dependencyManagement> in the parent POM. Enclosing dependencies in <dependencyManagement> centralizes management of the version, scope, and exclusions for each dependency, if and when you decide to use it. Maven's guide to dependency management gets into all the details. – hotshot309 Sep 13 '12 at 16:27

It's like you said; dependencyManagementis used to pull all the dependency information into a common POM file, simplifying the references in the child POM file.

It becomes useful when you have multiple attributes that you don't want to retype in under multiple children projects.

Finally, dependencyManagement can be used to define a standard version of an artifact to use across multiple projects.

share|improve this answer
So, dependencies does not inherited? Its need to be declared in child project's pom anyway? – psed Aug 23 '12 at 9:39

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.