Gradle - Script

About

Gradle scripts are configuration scripts.

Object

As the script executes, it configures/build an object of a particular type (called the delegate object of the script)

Type of script Build and instance of the object
Build script Project
Init script Gradle
Settings script Settings

Interface

each Gradle script implements the Script interface

Documentation





Discover More
Gradle - Block

block in Gradle. A block is found in a script and is a method call which takes a closure as a parameter. The closure is treated as a configuration closure which configures some delegate object as it executes....
Gradle - Build

A build is a lifecyle task that executes a graph of task Gradle executes build scripts in three fixed phases: Initialization: Sets up the environment for the build and determine which projects will...
Gradle - build.gradle

build.gradle is a gradle script that is read and builds in memory an instance of Project There is a one-to-one relationship between...



Share this page:
Follow us:
Task Runner