Update cheatsheets

This commit is contained in:
ivuorinen
2026-01-08 00:22:45 +00:00
parent 7c4efb4fd3
commit 4c849cfc8a
12 changed files with 233 additions and 4 deletions

29
tldr/gradle-init Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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}}`