Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 618 Bytes

execute-multi-project-builds.md

File metadata and controls

25 lines (16 loc) · 618 Bytes

Execute Multi-Project Builds

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.