Dependencies analysis | IntelliJ IDEA (2024)

If you have a large Java project with several modules that uses multiple libraries, any operation that requires an essential structural change can be difficult. For example, if you decide to remove one of the libraries, extract an API or a new module, or modularize your application by switching to Java 9 Jigsaw modules, you need to analyze dependencies within your project in order to make sure that your change is not breaking anything.

IntelliJIDEA has a tool that allows you to analyze dependencies between modules, packages, and classes in your application and prepare for structural changes - the dependency analyzer.

Analyze dependencies

  1. Go to Code | Analyze Code | Dependencies.

    Alternatively, if you want to analyze a specific item, right-click it in the Project tool window and select Analyze | Analyze Dependencies.

  2. In the dialog that opens, specify the scope of files that you want to analyze.

    Dependencies analysis | IntelliJIDEA (1)

    If the necessary scope is not created yet, click Dependencies analysis | IntelliJIDEA (2) and define a new scope in the dialog that opens.

  3. Select the Include test sources option if you want to analyze your test code together with the production code.

  4. Select the Show transitive dependencies option if you want to analyze transitive dependencies and specify the necessary threshold.

    For example, A depends on B and B depends on C. By setting the threshold to 1, the IDE will display B and C dependencies for A. By setting the threshold to 0, only B dependencies will be displayed for A.

  5. Click Analyze to run the analysis.

    When the analysis is finished, the results are displayed in the Dependency Viewer tool window.

  6. In the left pane of the tool window, select the node in which you want to search for dependencies.

  7. In the right pane, select the node on which the selected node depends.

    Search results are displayed in the lower pane of the tool window. Use the options on the toolbar to manage your search results.

    Dependencies analysis | IntelliJIDEA (3)

Analyze module dependencies

Module dependencies analysis shows all modules that exist in the specified scope, the relationships between these modules as they are specified in the Dependencies tab of the Project Structure dialog, and the cyclic dependencies between the modules.

You can use this type of analysis to make sure that the dependencies you have previously defined still exist in your project.

  1. Go to Code | Analyze Code | Module Dependencies.

    If there are no selected modules in the Project tool window, you will be prompted to specify the scope of analysis. You can inspect the whole project, the current module, or a module group.

    Alternatively, right-click a module in the Project tool window and select Analyze | Analyze Module Dependencies.

  2. The Module Dependencies tool window opens listing all modules withing the selected scope of files.

    If any cyclic dependencies are found in the selected module, they are shown in the right part of the tool window.

    Dependencies analysis | IntelliJIDEA (4)
  3. Select a module in the tree view and click Dependencies analysis | IntelliJIDEA (5) on the toolbar of the Module Dependencies tool window to find the modules that depend on the selected one.

  4. In the dialog that opens, specify the scope of files that you want to analyze.

  5. Select the Include test sources option if you want to analyze your test code together with the production code.

  6. Select the Show transitive dependencies option if you want to analyze transitive dependencies and specify the necessary threshold.

    For example, A depends on B and B depends on C. By setting the threshold to 1, the IDE will display B and C dependencies for A. By setting the threshold to 0, only B dependencies will be displayed for A.

  7. Click Analyze to run the analysis.

    When the analysis is finished, the results are displayed in the Dependency Viewer tool window.

  8. In the left pane of the tool window, select the node in which you want to search for dependencies.

  9. In the right pane, select the node on which the selected node depends.

    Search results are displayed in the lower pane of the tool window. Use the options on the toolbar to manage your search.

Module Dependencies tool window

This tool window is available after you run the Analyze Module Dependencies option and displays module dependencies as they are defined in the module settings. In this tool window, you can change the direction of the dependencies and perform a more detailed analysis of the source code.

Toolbar buttons

Item

Description

Dependencies analysis | IntelliJIDEA (6)

Close the current tab.

Dependencies analysis | IntelliJIDEA (7)

Open the Specify Dependency Analysis Scope dialog and analyze dependencies.

Dependencies analysis | IntelliJIDEA (8)

Change the direction of dependencies.

Dependencies analysis | IntelliJIDEA (9)

Include test dependencies.

Context menu options

Item

Shortcut

Description

Expand All / Collapse All

Ctrl+NumPad +/Ctrl+NumPad -

Fold or unfold all nodes.

Open Module Settings

F4 Ctrl+Enter

Open settings of the selected module in the Modules page of the Project Structure dialog (Ctrl+Alt+Shift+S).

Analyze Dependencies

Analyze Backward Dependencies

Analyze Cyclic Dependencies

Select one of these options to analyze dependencies.

Analyze cyclic dependencies

By analyzing cyclic dependencies you can detect circular relationships between packages in the specified scope.

For example, a cycle occurs when classes from package 1 reference classes from package 2, classes from package 2 reference classes from package 3, and classes from package 3 reference classes from package 1.

Dependencies analysis | IntelliJIDEA (10)
  1. Go to Code | Analyze Code | Cyclic Dependencies.

    Alternatively, right-click an item in the Project tool window and select Analyze | Analyze Cyclic Dependencies.

  2. In the Specify Cyclic Dependency Analysis Scope dialog, select the scope of files that you want to analyze.

  3. Select the Include test sources option if you want to analyze your test code together with the production code.

    Dependencies analysis | IntelliJIDEA (11)
  4. Click OK to run the analysis.

    When the analysis is finished, the results are displayed in the Dependency Viewer tool window.

  5. In the left pane of the tool window, select the node in which you want to search for cyclic dependencies.

  6. Search results are displayed in the right pane. Use the options on the toolbar to manage your search results.

    Dependencies analysis | IntelliJIDEA (12)

Analyze backward dependencies

With this type of analysis, you can find other classes or modules in a certain range of files that depend on the specified scope of analysis (a whole project, a module, a file, unversioned files, and so on).

Analyzing backward dependencies might be time-consuming, especially in large projects.

  1. Go to Code | Analyze Code | Backward Dependencies.

    Alternatively, if you want to analyze a specific item, right-click it in the Project tool window and select Analyze | Analyze Backward Dependencies.

  2. In the Analysis Scope section of the dialog, specify the part of your project for which you want to find the dependencies.

  3. Select the Include test sources checkbox, if you wish to analyze the test sources.

  4. In the Analyze usages in section, specify the scope in which you want to search for dependencies.

    Dependencies analysis | IntelliJIDEA (13)
  5. When the analysis is finished, the results are displayed in the Dependency Viewer tool window.

  6. In the left pane of the tool window, select the file or the scope of files that you want to search for.

  7. In the right pane, select the scope in which you want to search the selected dependencies.

    Search results are displayed in the lower pane of the tool window. Use the options on the toolbar to manage your search.

If the necessary scopes are not created yet, click Dependencies analysis | IntelliJIDEA (14) and define new scopes in the dialog that opens.

Dependency Viewer

The Dependency Viewer tool window opens automatically once the analysis is finished and displays the results. To open the tool window manually, go to View | Tool Windows | Dependency Viewer in the main menu, but make sure to run the analysis first.

Dependency Viewer consists of the following areas:

  • The toolbar at the top of the tool window. Use these buttons to filter dependencies.

  • The Analyzed Code pane in the left part of the tool window contains the project tree. Selecting an item for which you want to find dependencies opens the Parent Code pane.

  • The Parent Code pane on the right shows the items on which your selection depends.

  • The Usage pane in the lower part of the tool window opens when you select an item in the Parent Code pane.

Dependencies analysis | IntelliJIDEA (15)

Analyzed Code toolbar buttons

Item

Tooltip and Shortcut

Description

Dependencies analysis | IntelliJIDEA (16)

Close

Close the current tab of the tool window.

Dependencies analysis | IntelliJIDEA (17)

Rerun Ctrl+F5

Rerun the dependency analysis in the same tab.

Dependencies analysis | IntelliJIDEA (18)

Flatten Packages

Display all packages as a single-level tree view.

Dependencies analysis | IntelliJIDEA (19)

Show Files

Display files on the Analyzed Code and Parent Code panes. Otherwise, both panes display only packages.

Dependencies analysis | IntelliJIDEA (20)

Show Modules

Display items under the corresponding modules in the tree view. Otherwise, project items are displayed under their packages.

Dependencies analysis | IntelliJIDEA (21)

Flatten Modules

Arrange items in the tree by user-defined module groups.

Dependencies analysis | IntelliJIDEA (22)

Group by Scope Type

Group items in the tree by scope (production, test, libraries, and so on).

Dependencies analysis | IntelliJIDEA (23)

Show Illegals Only

Display only illegal and invalid dependencies.

Dependencies analysis | IntelliJIDEA (24)

Mark Illegal

Mark the selected dependency as illegal.

Dependencies analysis | IntelliJIDEA (25)

Edit Rules

Define rules for the dependencies analysis.

Dependencies analysis | IntelliJIDEA (26)

Export to Text File

Export the results of the analysis to a text file or copy them to the clipboard.

Validate dependencies

When analyzing dependencies, you might need to exclude some of them from the analysis process. You can do that using the Validate Dependencies option.

  1. On the Dependency Viewer toolbar, click the Dependencies analysis | IntelliJIDEA (27) Edit Rules button.

    In the dialog that opens, declare the rules that describe invalid and valid dependencies.

  2. Click Dependencies analysis | IntelliJIDEA (28) in the required section of the dialog depending on the rule that you want to create.

    1. From the Deny usages of list, select the dependencies that will be recognized as invalid.

    2. From the in list, select the scope of files in which the selected usages will be treated as invalid.

      If the necessary scopes are not created yet, click Dependencies analysis | IntelliJIDEA (29) and define new scopes in the dialog that opens.

    1. From the Allow usages of list, select the dependencies that will be recognized as valid.

    2. From the only in list, select the scope of files in which the selected usages will be treated as valid. These usages will be valid only in case they are used in this scope.

      If the necessary scopes are not created yet, click Dependencies analysis | IntelliJIDEA (30) and define new scopes in the dialog that opens.

  3. Select the Skip import statements checkbox if you want to ignore references in the import statements.

  4. Apply the changes and close the dialog.

    Dependencies analysis | IntelliJIDEA (31)

    Click Dependencies analysis | IntelliJIDEA (32) on the Dependency viewer toolbar to rerun the analysis with the new rules.

Last modified: 28 June 2024

Thread dumpsSpecify Dependency Analysis Scope dialog

Dependencies analysis | IntelliJ IDEA (2024)
Top Articles
Opinion: Why is BL Getting More Popular with Our Teenagers?
Do More of Your Banking at the ATM
Shoe Game Lit Svg
Avonlea Havanese
Goodbye Horses: The Many Lives of Q Lazzarus
Apex Rank Leaderboard
Davante Adams Wikipedia
Is Sportsurge Safe and Legal in 2024? Any Alternatives?
Morgan Wallen Pnc Park Seating Chart
Chastity Brainwash
Craigslist Dog Kennels For Sale
What Is A Good Estimate For 380 Of 60
Jack Daniels Pop Tarts
Craigslist Mpls Cars And Trucks
fort smith farm & garden - craigslist
Craiglist Tulsa Ok
Las 12 mejores subastas de carros en Los Ángeles, California - Gossip Vehiculos
Pokemon Unbound Shiny Stone Location
Raz-Plus Literacy Essentials for PreK-6
Chase Bank Pensacola Fl
Dcf Training Number
The Tower and Major Arcana Tarot Combinations: What They Mean - Eclectic Witchcraft
Sef2 Lewis Structure
Baja Boats For Sale On Craigslist
Walmart Pharmacy Near Me Open
Kohls Lufkin Tx
Arrest Gif
Co10 Unr
DIY Building Plans for a Picnic Table
Emiri's Adventures
Matlab Kruskal Wallis
Murphy Funeral Home & Florist Inc. Obituaries
Moses Lake Rv Show
Steven Batash Md Pc Photos
Ducky Mcshweeney's Reviews
AP Microeconomics Score Calculator for 2023
Crystal Mcbooty
Robeson County Mugshots 2022
Labyrinth enchantment | PoE Wiki
Babbychula
Jason Brewer Leaving Fox 25
Reese Witherspoon Wiki
Bill Manser Net Worth
LoL Lore: Die Story von Caitlyn, dem Sheriff von Piltover
How Big Is 776 000 Acres On A Map
My Gsu Portal
Cvs Minute Clinic Women's Services
Buildapc Deals
Sdn Dds
Elizabethtown Mesothelioma Legal Question
Mast Greenhouse Windsor Mo
Latest Posts
Article information

Author: Horacio Brakus JD

Last Updated:

Views: 6074

Rating: 4 / 5 (51 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Horacio Brakus JD

Birthday: 1999-08-21

Address: Apt. 524 43384 Minnie Prairie, South Edda, MA 62804

Phone: +5931039998219

Job: Sales Strategist

Hobby: Sculling, Kitesurfing, Orienteering, Painting, Computer programming, Creative writing, Scuba diving

Introduction: My name is Horacio Brakus JD, I am a lively, splendid, jolly, vivacious, vast, cheerful, agreeable person who loves writing and wants to share my knowledge and understanding with you.