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

gradle projects — Display the sub-projects of a Gradle project. More information: <https://docs.gradle.org/current/use

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandsubcliprojectsgradle projectsgradledisplay

Problem

How to use the gradle projects command: Display the sub-projects of a Gradle project. More information: <https://docs.gradle.org/current/userguide/command_line_interface.html#listing_projects>.

Solution

gradle projects — Display the sub-projects of a Gradle project. More information: <https://docs.gradle.org/current/userguide/command_line_interface.html#listing_projects>.

Display all sub-projects:
gradle projects


Display sub-projects with their descriptions:
gradle projects {{[-i|--info]}}


Display sub-projects of a specific project in a multi-project build:
gradle :{{subproject}}:projects

Code Snippets

Display all sub-projects

gradle projects

Display sub-projects with their descriptions

gradle projects {{[-i|--info]}}

Display sub-projects of a specific project in a multi-project build

gradle :{{subproject}}:projects

Context

tldr-pages: common/gradle projects

Revisions (0)

No revisions yet.