mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 11:25:16 +08:00
e23a888449
Signed-off-by: Emmanuel Ferdman <emmanuelferdman@gmail.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
678 B
678 B
gradle init
Initialize a new Gradle project interactively. More information: https://docs.gradle.org/current/userguide/build_init_plugin.html.
- Initialize a new Gradle project interactively:
gradle init
- Initialize a project of a specific type:
gradle init --type {{basic|java-application|java-library|...}}
- Initialize a project with a specific DSL:
gradle init --dsl {{groovy|kotlin}}
- Initialize a project with a specific test framework:
gradle init --test-framework {{junit-jupiter|testng|spock}}
- Initialize a project without interactive prompts:
gradle init --type {{java-application}} --dsl {{kotlin}} --test-framework {{junit-jupiter}}