mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-03 10:55:06 +00:00
Update cheatsheets
This commit is contained in:
25
tldr/gradle-tasks
Normal file
25
tldr/gradle-tasks
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# gradle tasks
|
||||
|
||||
> List available tasks in a Gradle project.
|
||||
> More information: <https://docs.gradle.org/current/userguide/command_line_interface.html#listing_tasks>.
|
||||
|
||||
- List the main tasks:
|
||||
|
||||
`gradle tasks`
|
||||
|
||||
- List all tasks including subtasks:
|
||||
|
||||
`gradle tasks --all`
|
||||
|
||||
- List tasks in a specific group:
|
||||
|
||||
`gradle tasks --group {{group_name}}`
|
||||
|
||||
- List tasks for a specific subproject:
|
||||
|
||||
`gradle :{{subproject}}:tasks`
|
||||
Reference in New Issue
Block a user