Search Gradle plugins

Version 1.0.0 (latest)

1.0.0

Created 25 September 2015.

A Gradle Plugin that notifies about ending of the build task.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.rsavin.gradle.microwave") version "1.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.rsavin.gradle:gradle-microwave:1.0.0")
      }
    }
    
    apply(plugin = "com.github.rsavin.gradle.microwave")
  • Applying plugins to all subprojects .