Let's say I have a project whose dependency:tree
prints like this.
[INFO] group:a:jar:1.0
[INFO] +- group:b:jar:1.0:compile
[INFO] | +- group:c:jar:1.0:compile
Can I refer group:c:version
which is 1.0
in group:a
's pom.xml
?
I know it's weird but I'm facing this situation.