HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

gradle tasks — List available tasks in a Gradle project. More information: <https://docs.gradle.org/current/usergui

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandgradle taskscligradlelisttasksavailableproject

Problem

How to use the gradle tasks command: List available tasks in a Gradle project. More information: <https://docs.gradle.org/current/userguide/command_line_interface.html#listing_tasks>.

Solution

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

Code Snippets

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

Context

tldr-pages: common/gradle tasks

Revisions (0)

No revisions yet.