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

25
tldr/gradle-wrapper Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# gradle wrapper
> Generate the Gradle wrapper files for a project.
> More information: <https://docs.gradle.org/current/userguide/gradle_wrapper.html>.
- Generate wrapper with the current Gradle version:
`gradle wrapper`
- Generate wrapper with a specific Gradle version:
`gradle wrapper --gradle-version {{8.5}}`
- Generate wrapper with a specific distribution type:
`gradle wrapper --distribution-type {{bin|all}}`
- Generate wrapper using a specific distribution URL:
`gradle wrapper --gradle-distribution-url {{url}}`