Hi. I have a Gradle build with multiple submodules...
# intellij
p
Hi. I have a Gradle build with multiple submodules that also have submodules. The problem is that Intellij is prefixing the name of the submodule submodules. For example: test test-api test-api-common [test.test-api-common] In settings.gradle.kts I have the following: rootProject.name = “test” include(“:test-api”) include(“:test-api-common”) project(“:test-api-common”).projectDir = file(“test-api/test-api-common”) Is there any way to force Intellij to show just the name of the module since it is quite annoying when you have a lot of modules? Thanks, Primoz