I have a parent pom which has a dependency to third party jar A with version 1.0. Then I have a child project which inherits from the parent pom. This child project defines a dependency to library B which itself has the dependency to the third party jar A with version 1.1.
Does the dependency tree look like this(and therefore version 1.0 is pulled in):
Child->A(version 1.0) Child->B->A(version 1.1)
On which level of the dependency tree are the dependencies of the parent POM?