My project has the following structure:
my_project
+--- clients
|
\--- dumb
|
\--- client
|
\--- build.gradle
|
\--- server
|
\--- build.gradle
+--- module_one
|
\--- build.gradle
+--- module_two
\--- build.gradle
+--- build.gradle
\--- settings.gradle
‘gradle projects’ outputs:
Root project 'my_project'
+--- Project ':clients'
|
\--- Project ':clients:dumb'
|
+--- Project ':clients:dumb:client'
|
\--- Project ':clients:dumb:server'
+--- Project ':module_one'
\--- Project ':module_two'
How can I achieve project structure like:
Root project 'my_project'
+--- Project ':clients:dumb:client'
+--- Project ':clients:dumb:server'
+--- Project ':module_one'
\--- Project ':module_two'
Thanks in advance