Gradle Task

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

External

Internal

Overview

A Task represents a single atomic piece of work for a build, such as compiling classes or generating javadoc. A build consists in executing a sequence of tasks in succession. Tasks may be declared in build.gradle. One of the simplest possible task declarations is:

task sample {
    println 'this is a simple task'
}

Task Types

TODO: https://docs.gradle.org/current/dsl/#N10376