IntelliJ IDEA 2021.1 Help

Dependencies analysis

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.

IntelliJ IDEA 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. From the main menu, select Analyze | Dependencies.

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

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

    Selecting the scope of the analysis

    If the necessary scope is not created yet, click the Add scope (Insert) icon 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. Do not travel deeper than 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 OK 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 results shown in the tool window

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. From the main menu, select Analyze | Module Dependencies.

  2. Specify the scope of analysis. You can inspect the whole project or the current module or a module group.

    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.

    img
  3. Select a module in the tree view and click the Analyze Dependencies button 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. Do not travel deeper than 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 OK 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 direction of the dependencies and perform a more detailed analysis of the source code.

Toolbar buttons

ItemDescription
CloseClose the current tab.
Analyze DependenciesOpen the Specify Dependency Analysis Scope dialog and analyze dependencies.
Backward DependenciesChange the direction of dependencies.
Include Test DependenciesInclude test dependencies.

Context menu options

ItemShortcutDescription
Expand All
Collapse All
Ctrl+NumPad +
Ctrl+NumPad -
Fold or unfold all nodes.
Open Module SettingsF4
Ctrl+Enter
Open settings of the selected module in the Modules page of the Project Structure dialog.
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.

Cyclic dependencies shown on a scheme
  1. From the main menu, select 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.

    Selecting a scope for analyzing cyclic dependencies

  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.

    Results of cyclic dependencies analysis shown in the tool window

Analyze backward dependencies

With this type of analysis, you can find another 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. From the main menu, select Analyze | Backward Dependencies.

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

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

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

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

    Running the backward dependencies analysis
  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.

Dependency Viewer

The Dependency Viewer tool window opens automatically once the analysis is finished and displays the results. To open the tool window manually, select View | Tool Windows | Dependency Viewer from 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.

Analyzing backward dependencies

Analyzed Code toolbar buttons

ItemTooltip and ShortcutDescription
CloseCloseClose the current tab of the tool window.
rerunRerun
Ctrl+F5
Rerun the dependency analysis in the same tab.
Flatten PackagesFlatten PackagesDisplay all packages as a single-level tree view.
Show FilesShow FilesDisplay files on the Analyzed Code and Parent Code panes. Otherwise, both panes display only packages.
Show ModulesShow ModulesDisplay items under the corresponding modules in the tree view. Otherwise, project items are displayed under their packages.
Flatten ModulesFlatten ModulesArrange items in the tree by user-defined module groups.
Group By Scope TypeGroup by Scope TypeGroup items in the tree by scope (production, test, libraries, and so on).
FilterShow Illegals OnlyDisplay only illegal and invalid dependencies.
Mark IllegalMark IllegalMark the selected dependency as illegal.
SettingsEdit RulesDefine rules for the dependencies analysis.
Export to Text FileExport to Text FileExport 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 Edit Rules Edit Rules button.

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

  2. Click the Add button in the required section of the dialog depending on the rule that you want to create.

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

    • 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 the Add scope (Insert) icon and define new scopes in the dialog that opens.

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

    • 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 the Add scope (Insert) icon 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.

    the Dependency Validation dialog

    Click the Rerun button on the Dependency viewer toolbar to rerun the analysis with the new rules.

Last modified: 21 June 2021