Gradle - Base Plugin

About

The base plugin is a plugin that comes with a default Gradle installation

Example

Gradle - build.gradle

plugins {
    id "base"
}

task zip(type: Zip, group: "Archive", description: "Archives sources in a zip file") {
    from "src"
    setArchiveName "basic-demo-1.0.zip"
}

Documentation





Discover More
Gradle - Plugin

plugin adds task to Gradle. A gradle distribution comes out of the box with: the base. the gradle core task api. (Ref)...



Share this page:
Follow us:
Task Runner