fr.jcgay.gradle-notifier
Owner: Jean-Christophe Gay
A plugin to have desktop notification when a build ends
https://github.com/jcgay/gradle-notifier
Sources: https://github.com/jcgay/gradle-notifier
Version 3.0.0 (latest)
3.0.0
Created 28 October 2018.
A plugin to have desktop notification when a build ends
Using the plugins DSL:
plugins {
id("fr.jcgay.gradle-notifier") version "3.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.fr.jcgay:gradle-notifier:3.0.0")
}
}
apply(plugin = "fr.jcgay.gradle-notifier")
Using the plugins DSL:
plugins {
id "fr.jcgay.gradle-notifier" version "3.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.fr.jcgay:gradle-notifier:3.0.0"
}
}
apply plugin: "fr.jcgay.gradle-notifier"