Reputation: 569
I have 2 independent gradle modules imported into one workspace in intelliJ.
The ota module depends on metasearch module.
In Maven, if metasearch module have same version to metasearch dependency version in ota, I can navigate between classes in these 2 modules.
Currently, when I go to implementation classes in metasearch from ota, it navigates me to classes in metasearch.jar file.
How to configure IntelliJ to navigate between inner classes in workspace?
Upvotes: 0
Views: 53
Reputation: 6014
There is however a hidden option that you may try to set: "external.system.substitute.library.dependencies = true" via "Help | Edit Custom Properties" and restart.
Upvotes: 1