mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-06 04:44:43 +00:00
26 lines
507 B
Plaintext
26 lines
507 B
Plaintext
---
|
|
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`
|