Reputation: 3893
Is it necessary to declare dependencies at child's pom.xml when they are present in parent's pom at (or ) section? Are they inherited?
Upvotes: 0
Views: 121
Reputation: 141
The fallowing elements from the parent POM are inherited by the children pom's:
For more info see: Pom Inheritance
So in your case you don't need to declare again the dependencies in the child pom.
Upvotes: 2