Gradle Project: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
=External=
* Project API: [https://docs.gradle.org/current/javadoc/org/gradle/api/Project.html org.gradle.api.Project]
* Project DSL: https://docs.gradle.org/current/dsl/org.gradle.api.Project.html
=Internal=
=Internal=
* [[Gradle_Concepts#Project|Gradle Concepts]]
* [[Gradle_Concepts#Project|Gradle Concepts]]
Line 9: Line 13:
A Gradle project typically represents a software component to be built by executing a set of [[Gradle Task#Overview|tasks]] in sequence. A project has a direct class representation in the Gradle domain model: [https://docs.gradle.org/current/javadoc/org/gradle/api/Project.html org.gradle.api.Project].
A Gradle project typically represents a software component to be built by executing a set of [[Gradle Task#Overview|tasks]] in sequence. A project has a direct class representation in the Gradle domain model: [https://docs.gradle.org/current/javadoc/org/gradle/api/Project.html org.gradle.api.Project].


=Project API=
{{External|[https://docs.gradle.org/current/javadoc/org/gradle/api/Project.html org.gradle.api.Project]}}
=Project DSL=
{{External|[https://docs.gradle.org/current/dsl/org.gradle.api.Project.html Project]}}


=Project Directory=
=Project Directory=

Revision as of 23:33, 3 October 2020

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.


Project Directory