The Build Init Plugin of Gradle 8.7 has documentation here.
In the example seen in Sample usage section:
gradle init
--type java-application
--dsl kotlin
--test-framework junit-jupiter
--package my.project
--project-name my-project
--no-split-project
--java-version 17
… we see the --no-split-project
option. Unfortunately that option is not documented.
Does anyone know:
- What the
no-split-project
option do exactly? - What is the opposite, when you do not want that option?
- What is the default?
- Is there any official documentation?