IntelliJ IDEA 2024.1 Help

Maven dependencies

IntelliJ IDEA lets you manage Maven dependencies in your project. You can add, import Maven dependencies, view them in the diagram, and also analyze them.

Add a Maven dependency

IntelliJ IDEA lets you add a Maven dependency to your project. We recommend that you specify the dependency inside your POM. Dependencies that you set up manually inside IntelliJ IDEA module settings will be discarded on the next Maven project reload.

  1. Open your POM in the editor.

  2. Press Alt+Insert to open the Generate context menu.

  3. From the context menu, select Dependency.

  4. In the Maven Artifact Search tool window, in the search field, start typing the name of your dependency. In the list of results select the one you need and click Add.

    Maven Artifact Search

    IntelliJ IDEA adds the dependency to your pom.xml.

    the Maven Tool Window

    IntelliJ IDEA also adds the dependency to the Dependencies node in the Maven tool window and to the External Libraries in the Project tool window.

    If the added dependency has its own transitive dependencies, IntelliJ IDEA displays them in both tool windows.

    the Maven tool window

Enable annotation processors

  1. Open your POM file.

  2. Specify the annotationProcessors and annotationProcessorPaths options.

    For example, check the following code:

    <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <annotationProcessorPaths> <path> <groupId>org.sample</groupId> <artifactId>sample-annotation-processor</artifactId> <version>1.2.3</version> </path> </annotationProcessorPaths> </configuration> </plugin> </plugins> </build>

    For more information, refer to Maven.

  3. Re-import your project. IntelliJ IDEA creates an annotation processors profile, enables the annotation processing and adds the appropriate path to the Annotation Processor settings located in Settings | Build, Execution, Deployment | Compiler.

    Annotation processors settings

Centralize dependency information

In a multi-module Maven project, the dependency in the parent POM will be inherited by all subprojects. You can use dependencyManagement to consolidate and centralize the management of the dependencies' versions.

  1. Open your POM in the editor.

  2. Press Alt+Insert to open the Generate context menu.

  3. From the context menu, select the Managed Dependency option that will show you the list of the dependencies that are defined in the dependencyManagement section of your parent POM in a multi-module project. IntelliJ IDEA also shows the list of dependencies from the BOM files.

    the Choose Dependency dialog
  4. Select the desired dependency and click OK. The dependency is added to the POM. You don't need to specify the version on the dependency it will be taken from the DependencyManagement.

    dependency management

    However, if you want to overwrite the defined version, you need to include version when you add the managed dependency to the POM.

Add a scope for the Maven dependency

You can add a scope for your dependency using POM. In this case IntelliJ IDEA will execute the dependency at the specified phase.

  1. In your POM, in the dependency description add scope and using the code completion add the name of the scope.

    the dependency scope
  2. Import your changes. The name of the scope is displayed in the Maven tool window. In the Project Structure dialog, on the Modules page you can see that the scope of the dependency is also displayed.

    the Project Structure dialog

    Note that changing dependency's scope in the Project Structure dialog will not affect the pom.xml file.

You can also add a custom jar file as a dependency using the Maven scope system when you define your dependency. However, note that this dependency will only be available on your machine, and you can use it only for the local deployment.

Work with Maven transitive dependencies

You can view transitive dependencies that were pulled in with the added or imported Maven dependency. You can check their versions, change them, or exclude those dependencies altogether.

The Maven tool window displays the direct dependency and all its transitive dependencies that were pulled in.

View the transitive dependency

  1. In your project's POM, press Ctrl and hover over the dependency.

  2. Click the dependency to open the dependency's POM.

    the dependency POM
  3. In the dependency POM, view the active dependency, its transitive dependencies and their versions.

    the dependency POM with transitive dependencies

    You can check the origin from which the dependency was pulled in.

    the dependency POM with origin

Exclude the transitive dependency

You can exclude a transitive dependency if you want.

  1. Open the dependency POM and find the transitive dependency you want to exclude. Copy groupId and artifactId.

  2. In your project POM, underneath your active dependency, enter exclusions and using code completion paste the copied info of the dependency you want to exclude.

    POM with dependency exclusion

    The dependency is also excluded from the Project and Maven tool windows.

Import Maven dependencies

You can import dependencies to your Maven project. When IntelliJ IDEA imports the added dependency, it parses the dependency and updates your project.

  • In the pom.xml file, add a dependency you need. When you change the pom.xml, IntelliJ IDEA displays a notification suggesting to load the changes. Click Load the changes in the editor to import the dependency and update your project.

  • In the Maven tool window, press Reimport All Maven Projects. In this case you manually trigger the re-importing process of all projects and their dependencies.

View Maven dependencies as a diagram

IntelliJ IDEA lets you view and work with Maven dependencies in a diagram format.

Generate a diagram

  1. In the Maven tool window, on the toolbar, click the Show Dependencies icon or select the appropriate option from the context menu.

    Show Dependencies
  2. In the diagram window, IntelliJ IDEA displays the sub-project and all its dependencies including the transitive ones.

    the Maven dependencies diagram

View the diagram structure

  1. Generate a diagram.

  2. Click Structure in the left toolbar. IntelliJ IDEA opens the Structure tool window that displays a map of your diagram with a small preview of the selected block and its neighbors.

    the Structure view

    Use the context menu to zoom in and out, move canvas, change layout, and export part of the diagram into an image.

    the context menu

You can perform different actions while in the diagram window.

Change the visibility level

You can change the visibility level and, for example, view dependencies that have a specific scope (compile, test, and so on).

  1. In the diagram window, select the subproject and click the Change Visibility Level icon.

  2. From the list, select the dependency scope you want to see. IntelliJ IDEA displays only the specified dependency scope.

    the Specific scope diagram

Navigate to POM

You can easily navigate to POM from the diagram window.

  • Select the desired node, and press F4, or choose Jump to Source on its context menu. The corresponding file opens in the editor.

You can check conflicts and duplicates by clicking the Conflicts and Duplicates icon in the diagram window.

Check conflicts and duplicates

  • In the diagram window, click the Conflicts and Duplicates icon.

Show conflicts and duplicates

The red arrow points to dependencies that contain duplicates or errors. IntelliJ IDEA also displays dependencies' versions to help you resolve the conflicts. Double-click the dependency to open its POM.

Show path from the selection to the root

You can select dependencies and see how they are included in the project.

  1. In the diagram window, select a dependency for which you want to see a connection to a project. If you want to select several dependencies at once, hold down Shift and make the selection.

  2. Click the Show Path Root Selection.

Show Path Root Selection

Show neighbors of the selected node

You can select dependencies and see what other dependencies are connected to the selected nodes. It might be helpful if you have a large diagram and want to focus on just a part of it.

  1. In the diagram window, select a dependency you need. If you want to select several dependencies at once, hold down Shift and make the selection.

  2. Click the Show Neighbors of Selected Nodes.

    Show Neighbors of Selected Nodes

Exclude a dependency

You can use a diagram to exclude a dependency from the project's POM.

  1. Select a dependency in the diagram window.

    Exclude diagrams
  2. From the context menu, choose Exclude.

  3. From the list, select the module (if any) where the exclusion definition will be added. The selected dependencies will be removed from diagram, and the exclusion section will be added to the corresponding dependency in the module's POM.

    Exclude a dependency

Dependency analyzer

Maven dependency analyzer lets you quickly see and analyze resolved dependencies, the unresolved ones, dependencies with conflicts, and transitive dependencies in your project and subprojects.

Analyze dependencies

  1. On the toolbar in the Maven tool window, click the Analyze Dependencies.

    Alternatively, in the Maven tool window, right-click the needed dependency and select Analyze Dependencies from the context menu. You can also right-click a module in the Project view and use the same action.

    Resolved dependencies
  2. In the Dependency Analyzer window, you can narrow down your analysis scope, check only the conflicted dependencies, or check usages.

    If you want to see the needed dependency in the pom.xml file, right-click the dependency and select Go to Maven Dependency. If you click Open Maven Config on the specific dependency, IntelliJ IDEA will open the dependency's POM file.

    You can also click Go to Package Search to navigate to the dependency in question in the Work with the Dependencies tool window.

    If the duplicate dependency is found, it will be greyed out.

    duplicate dependencies

    For more information about available options and icons in the Dependency Analyzer window, refer to the reference section.

Dependency analyzer tool window reference

Item

Description

Scope

You can see scopes in which every dependency is used in the project. To narrow down the list of the dependencies based on their scope, select the appropriate option from the list of scopes.

Dependency analyzer: dependency scope

Show Conflicts Only

Click the Conflicts icon to see only unresolved or conflicted dependencies.

Dependencies with conflicts

Show GroupId

Click Show GroupId and select Show GroupId to display GroupId in the list of dependencies.

Show as Tree

Toggle Show as Tree to display the list of dependencies in a form of nodes or in the flat list.

The tree view will help you quickly check the transitive dependencies.

Expand / Collapse

Use the Expand All icon/the Collapse All icon expand or collapse the list of dependencies.

Last modified: 08 April 2024