In Eclipse, expand current project in project explorer,
click Java Resources
-> libraries
-> Maven Dependencies
And I found there are two jar files which in different version, i.e.:
commons-lang-2.1.jar
and
commons-lang3-3.1.jar
but from pom.xml
, I cannot tell where commons-lang-2.1.jar
come from as it must required by one of the artifacts. But it is too much trouble to check pom
file from each artifact...
I heard of dependency-tree
can work something similar but don't know how to make it work under this situation. Any hint is appreciated.