Search Gradle plugins

Version 3.0.0 (latest)

3.0.0

Created 28 October 2018.

A plugin to have desktop notification when a build ends

Add this plugin to your build using the plugins DSL:

plugins {
  id("fr.jcgay.gradle-notifier") version "3.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.fr.jcgay:gradle-notifier:3.0.0")
      }
    }
    
    apply(plugin = "fr.jcgay.gradle-notifier")
  • Applying plugins to all subprojects .