Gradle Incremental Builds: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 2: Line 2:
* [[Gradle Concepts#Incremental_Builds|Gradle Concepts]]
* [[Gradle Concepts#Incremental_Builds|Gradle Concepts]]
=Overview=
=Overview=
An incremental build is a build that not executes tasks if it does not need to. Gradle determines whether it needs to execute a task or not by analyzing its inputs and outputs.  
An incremental build is a build that does not execute one or more tasks if it does not need to. Gradle determines whether it needs to execute a task or not by analyzing its [[#Task_Inputs_and_Outputs|inputs and outputs]].
 
=Task Inputs and Outputs=
=Task Inputs and Outputs=
=Build Cache=
=Build Cache=

Revision as of 00:56, 18 October 2020

Internal

Overview

An incremental build is a build that does not execute one or more tasks if it does not need to. Gradle determines whether it needs to execute a task or not by analyzing its inputs and outputs.

Task Inputs and Outputs

Build Cache