Settings.gradle: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 5: Line 5:
* [[Gradle_Concepts#Configuration_Scripts_and_Core_Types|Gradle Concepts]]
* [[Gradle_Concepts#Configuration_Scripts_and_Core_Types|Gradle Concepts]]
=Overview=
=Overview=
settings.gradle is referred to as an Gradle settings script.
The settings file defines which projects are taking part in a multi-project build, and it is optional for a single-project build. The default name is <tt>settings.gradle</tt>. The settings file is referred to as an Gradle settings script. The file is executed during the [[Gradle_Concepts#Initialization_Phase|initialization phase]].
 
=How Gradle Looks for a Settings File=
=How Gradle Looks for a Settings File=

Revision as of 00:38, 22 October 2020

External

Internal

Overview

The settings file defines which projects are taking part in a multi-project build, and it is optional for a single-project build. The default name is settings.gradle. The settings file is referred to as an Gradle settings script. The file is executed during the initialization phase.

How Gradle Looks for a Settings File