Gradle Multi-Project Builds
Jump to navigation
Jump to search
Internal
TODEPLETE
Overview
Sub-projects can depend on each other in the context of a multi-project build.
Inter-Project Dependencies
Projects that are part of the same multi-project build may be related to each other via two kind of dependencies: project dependencies and task dependencies.
Project Dependencies
Projects (modules) can define dependencies between each other to reuse code. A project dependency is declared with the following syntax in build.gradle:
dependencies {
implementation project(':shared')
}