com.github.rsavin.gradle.microwave
Owner: Roman Savin
A Gradle Plugin that notifies about ending of the build task.
https://github.com/rsavin/microwave-gradle-plugin
Sources: https://github.com/rsavin/microwave-gradle-plugin
Version 1.0.0 (latest)
1.0.0
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"