Bick
Bick

Reputation: 18551

Intellij - How do I know why a certain jar is included in my project

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

Answers (1)

Javaru
Javaru

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

Related Questions