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
Resolve Wi-Fi and Bluetooth issues caused by wireless interference
How Does a Credit Card Refund Work?
Beat Still - DesdemonaKaylose - Hanna Is Not A Boy's Name
Select Truck Greensboro
Chandigarh Wale Irving Photos
Metro Nails, 4700 North University Street, Peoria, Reviews and Appointments
No Hard Feelings Showtimes Near Amc Classic Pekin 14
Governor Brown Signs Legislation Supporting California Legislative Women's Caucus Priorities
Tap Into Bloomfield
Floresville'' - Craigslist Farm And Garden
Ultima Online Outlands Map
Kiddle Encyclopedia
Fnv Turbo
Belle delphine grip tape by New User (Design 568636)
Flights To Frankfort Kentucky
South Bend Weather Underground
Does Nick Wheeler Still Talk To His Sister
F9 2385
Kenichiro Yoshida Net Worth
Asisn Massage Near Me
Oscillates Like A Ship
Ll Flooring Locations
Devotion Showtimes Near Maya Cinemas Delano
Jordans Auto Sale - Springfield, MA
Blak Stellenanzeigen
Brett Cooper Wikifeet
On the hunt for an apartment? Try these 9 Craigslist alternatives
Stars Cinema Golden
Ruth 1 Esv
Becky G Net Worth 2022 Forbes
Biggerlifestyles
Demencia Villainous Age
University Of Michigan Paging System
Chubby Mature Bbc
A guide to non-religious funerals
The FDA Drug Recall System is Voluntary, Haphazard, and Broken
Ts Massage Fort Lauderdale
Lawrence Ks Police Scanner
Rub And Tug Map
Pnc Park Morgan Wallen Map
Www.21Strepos
Gen 50 Kjv
Oil Change Services | Jiffy Lube
Psalm 139:5-12 (ESV)
Beatles Jrpg
Fx Channel On Optimum
Reno.fbsm
For Streamers, The “Livestream Fail” Subreddit Is A Blessing And A Curse
Shaughnessy Funeral Fairfield Ct
Spectrum Outage in West Bend, Wisconsin
Espn Masters Leaderboard
Autopartes usadas en Sun Valley 91352 | LKQ Pick Your Part
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.