Search Gradle plugins

Version 0.2.1

0.2.1

Created 31 August 2018.

Plugin for notify your slack channel about complete build

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.alexeykorshun.slack-build-notify") version "0.2.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.alexeykorshun:slack-build-notify:0.2.1")
      }
    }
    
    apply(plugin = "com.github.alexeykorshun.slack-build-notify")
  • Applying plugins to all subprojects .