Missing dependencies in the Gradle tasks view in IntelliJ IDEA

Hello,

Some dependencies are not displayed in the Gradle tasks view in IntelliJ. For example, if the following dependencies are defined:

microejRuntimeApi("com.microej:runtime-api-sdk6:1.0.0")
implementation("ej.library.test:junit:1.7.1")

Only junit is displayed in Gradle dependencies:
gradle_dependencies

The Runtime API can only be found in External Libraries and in Module settings (right-click on the project → Open Module Settings):
external_libraries

Is there a way to display the missing dependencies in the Gradle view?

Hello @toomtooms,

You must use the Gradle Dependency Analyzer to display your project’s dependencies. In the Gradle task view, right-click on your module’s name and click on Analyze Dependencies...

gradle_tasks_view

All your dependencies should be displayed, here is an example :

Best regards,
Denis

That works fine, thanks!