Extending Gradle: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 5: Line 5:
=Overview=
=Overview=


The first step of extending Gradle is writing a custom task. The custom task can be declared in-line in the default build script (build.gradle).
The first step of extending Gradle is writing a custom task. The custom task can be declared in-line in the default build script [[build.gradle]].
 


=Writing a Script Plugin=
=Writing a Script Plugin=
=Writing an Object Plugin=
=Writing an Object Plugin=

Revision as of 20:37, 23 September 2020

Internal

Overview

The first step of extending Gradle is writing a custom task. The custom task can be declared in-line in the default build script build.gradle.

Writing a Script Plugin

Writing an Object Plugin