snippetbashTip
gradle tasks — List available tasks in a Gradle project. More information: <https://docs.gradle.org/current/usergui
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 tasksList all tasks including subtasks:
gradle tasks --allList tasks in a specific group:
gradle tasks --group {{group_name}}List tasks for a specific subproject:
gradle :{{subproject}}:tasksCode Snippets
List the main tasks
gradle tasksList all tasks including subtasks
gradle tasks --allList tasks in a specific group
gradle tasks --group {{group_name}}List tasks for a specific subproject
gradle :{{subproject}}:tasksContext
tldr-pages: common/gradle tasks
Revisions (0)
No revisions yet.