Is it possible to show the jar's/libraries included by a dependency in pom.xml?
I would like to be able to map the resolved library inclusions from a dependency in the pom.xml of my project. For instance, I 'd like to be able to see which jars in the External Libraries get added to the project when adding, say, "spring-boot-starter-security." I can use "Analyze Dependencies" a little bit, but that's not really what I'm talking about. I want a "library walker," where I can click on a jar in the Libraries folder, like Maven:org.springframework.boot:spring-boot-starter-security:2.0.3.RELEASE, and see the tree of libraries "above" it that it depends on, and the libraries "below" it that depend on it. And then I want to be able to see that this "tree" of libraries was included in the project because of a particular dependency in the POM.
Please sign in to leave a comment.
Hi.
There is a maven dependency diagram:
https://www.jetbrains.com/help/idea/maven-support.html#maven_dependency_diagram
Also there is a ticket to improve it:
https://youtrack.jetbrains.com/issue/IDEA-142027