Gradle Project

From NovaOrdis Knowledge Base
Revision as of 23:50, 3 October 2020 by Ovidiu (talk | contribs) (→‎Overview)
Jump to navigation Jump to search

External

Internal

TO DEPLETE

Gradle Project and Build Script

Overview

A Gradle project typically represents a software component to be built by executing a set of tasks in sequence. A project has a direct class representation in the Gradle domain model: org.gradle.api.Project.

The project instance is available to the build.gradle script via the "project" variable, but not to settings.gradle, because at the stage in the build lifecycle when settings.gradle

Project Directory