Reputation: 18551
I have a multiple module in a gradle project.
I have a certain jar-hell now problem and I want to know who is the one that brings it.
For instance - I have a log jar fw and I want to know if it comes through Guice or rxJava.
Do I have a smple way to iew it in intellij?
Upvotes: 0
Views: 133
Reputation: 32036
I think your best bet ultimately would be to run gradle dependencyInsight from the command line (along with gradle the gradle dependencies command). I do not believe IDEA has a more direct way to show this information.
Upvotes: 2