Category: Gradle
Large projects in Gradle are typically split into smaller, inter-dependent modules. To display project structure, you can use the Gradle projects
command.
gradle -q projects
To see a list of the tasks of a project, run gradle :<project-path>:tasks
For example, to list tasks for a submodule called api
:
gradle :api:tasks
To build a submodule called api
:
gradle :api:build
See Executing Multi-Project Builds for more details.