Dependency Explorer is an IntelliJ IDEA plugin that simplifies the exploration of Gradle and Maven dependencies and allows you to quickly navigate to their detailed pages in Maven Repository.
- Supports multiple dependency formats:
- Gradle Standard:
implementation("group:artifact:version") - Gradle DSL Short:
implementation 'group:artifact:version' - Gradle DSL Named:
implementation group: 'group', name: 'artifact', version: 'version' - Maven XML:
<dependency> <groupId>group</groupId> <artifactId>artifact</artifactId> <version>version</version> </dependency>
- Gradle Standard:
This plugin is designed to make dependency management easier for developers using IntelliJ IDEA.
- Go to Settings/Preferences > Plugins > Marketplace.
- Search for "Gradle/Maven Dependency Explorer".
- Click Install.
- Visit JetBrains Marketplace.
- Click the Install to ... button while your IDE is running.
- Open a Gradle project file in IntelliJ IDEA.
- Place your cursor on a dependency line.
- Right-click and select
Open in Maven Repository. - The corresponding Maven Repository page will open in your browser.
- Open a
pom.xmlfile in IntelliJ IDEA. - Place your cursor inside any line of a
<dependency>block. - Right-click and select
Open in Maven Repository. - The corresponding Maven Repository page will open in your browser.