I know eclipse kinda gives you a GUI view of maven dependency and dependency hierarchy. Is there any other GUI tools I can easily just drop in my pom.xml file and it does the resolution and gives me a nice view of the dependency tree?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is this neat project that allows you to generate graphs for your dependencies.
Personally I use IntelliJ to get diagrams of my dependencies, but that’s because IntelliJ as my IDE.
If you’re a CLI user and don’t mind having to navigate in CLI, you can also use
mvn dependency:treewhich also gives you a graph of your dependencies.For more, check the link below.
Resources: