Gradle Lifecycle

Gradle Life cycle.

Gradle tasks go through several phases:

  1. Initialization: Determines which project and tasks will be part of the build.
    1. Initialization
  2. Configuration: Configures all tasks in the project (even if they are not executed).
    1. Gradle Configuration
  3. Execution: Executes the tasks in the specified order, respecting task dependencies.
    1. Execution
    2. Task Actions in Gradle (Execution Phase)

References


Children
  1. Execution
  2. Gradle Configuration
  3. Initialization

Backlinks