Search Gradle plugins

Version 1.0.0 (latest)

Created 25 September 2015.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.rsavin.gradle:gradle-microwave:1.0.0")
  }
}

apply(plugin = "com.github.rsavin.gradle.microwave")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.rsavin.gradle:gradle-microwave:1.0.0"
  }
}

apply plugin: "com.github.rsavin.gradle.microwave"

Learn how to apply plugins to subprojects