Hi, when I have sub projects in gradle the auto ge...
# intellij
t
Hi, when I have sub projects in gradle the auto generated IDE module name is of the form "parent/child" is there any way to configure this to be just "child" from either gradle configuration or IDE configuration?
g
It’s more a #gradle question but I think you can define that in the settings.gradle file:
Copy code
include 'qix'
project(":qix").projectDir = file("foo/bar")
t
cool thanks