Gradle Settings Script and Settings Instance: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 40: Line 40:
<syntaxhighlight lang='groovy'>
<syntaxhighlight lang='groovy'>
project(':subproject-A')
project(':subproject-A')
 
</syntaxhighlight>
<syntaxhighlight lang='groovy'>
findProject(':subproject-A')
findProject(':subproject-A')
</syntaxhighlight>
</syntaxhighlight>

Revision as of 01:07, 19 May 2018

External

Internal

Overview

The settings.gradle file describes the build's project hierarchy. In the simplest case, there is no settings.gradle, and the build consists in just a single project, the root project. In more complex cases, various sub-project hierarchies can be specified. The file can also be used to add libraries to the build script classpath. The configuration file is executed during the initialization phase and updates the state of the delegate Settings instance. For single-project builds, this file is optional. However, it is required for multi-project builds: the root project of the multi-project build must declare this file.

Project Hierarchy

The sub-projects are declared in the settings.gradle file of the root project with the "include" or "includeFlat" methods:

include 'subproject1', 'subproject2:child3'
includeFlat 'subproject1', 'subproject2'

The "include" method takes hierarchical project paths as arguments, while "includePath" expects a flat sibling structure. For more details about syntax, see Muti-Project Build Layout.

Resolution

  • Look at a directory called "master" on the same nesting level as the current directory.
  • If not found, search parent directories.
  • If not found, the build executes as a single project build.
  • If found, Gradle checks if the current project is part of multi-project hierarchy defined in the found settings.gradle file. If not, the build is executed as a single project build. Otherwise, a multi project build executed.

ProjectDescriptor - Access to Projects from Settings

Project information can be accessed from the settings.gradle file via ProjectDescriptor instances. Project instances are not accessible at this stage. ProjectDescriptor instances are created when a new project is added to the build from the settings script via include or includeFlat.

The ProjectDescriptor instances can be looked up in settings.gradle as follows:

project(':subproject-A')
findProject(':subproject-A')