Gradle Properties - Runtime and Project Configuration: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 5: Line 5:
=Overview=
=Overview=


"Properties" in this context represent external configuration elements passed to a [[Gradle_Concepts#Build_Lifecycle|Gradle build]] to modify the behavior of the Gradle runtime itself, or the behavior of tasks being executed by various projects that are part of the build. Gradle supports many kinds of "properties": configuration can be passed as command line flags, system properties, Gradle properties, environment variables and project properties. All these configuration elements are provided externally and injected into the build.  
"Properties" in this context represent external configuration elements passed to a [[Gradle_Concepts#Build_Lifecycle|Gradle build]] to modify the behavior of the Gradle runtime itself, or the behavior of tasks being executed by various projects that are part of the build. Gradle supports many kinds of "properties": configuration can be passed as command line options, system properties, Gradle properties, environment variables and project properties. All these configuration elements are provided externally and injected into the build.  
{{Internal|Gradle Command Line#Command_Line_Flags|Gradle Command Line Flags}}
{{Internal|Gradle Command Line#Command_Line_Flags|Gradle Command Line Flags}}
{{Internal|Gradle System Properties|Gradle System Properties}}
{{Internal|Gradle System Properties|Gradle System Properties}}

Revision as of 06:11, 5 October 2020

External

Internal

Overview

"Properties" in this context represent external configuration elements passed to a Gradle build to modify the behavior of the Gradle runtime itself, or the behavior of tasks being executed by various projects that are part of the build. Gradle supports many kinds of "properties": configuration can be passed as command line options, system properties, Gradle properties, environment variables and project properties. All these configuration elements are provided externally and injected into the build.

Gradle Command Line Flags
Gradle System Properties
Gradle Properties
Gradle Environment Variables
Gradle Project Properties

It is also possible to define properties in settings.gradle and build.gradle scripts and pass configuration around between different elements of the build. Those properties are named extra properties.

Gradle Extra Properties

Since build scripts may include executable code, it is also possible to use local variables, which are a feature of the underlying Groovy language.

Gradle Local Variables

The external configuration and extra properties become part of the state of various objects of the build, such as projects or tasks. The state of build objects can be read from the build scripts via dedicated accessors.

A project exposes coordinates such as name, group and version, various other state elements such as the description, path, and externally configured properties that come from gradle.properties file hierarchy or -P command line options. More details about accessing the project state and externally-configured properties are available in:

Gradle Project Coordinates, State and Configured Properties

A task also exposes its state (name, description, whether it is enabled or not) through getters and DLS elements.

TO DEPLETE

Gradle_Variables_and_Properties
Gradle Configuration