Search Gradle plugins

Version 0.1.5

Created 19 August 2018.

Plugin for notify your slack channel about complete build

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.alexeykorshun:slack-build-notify:0.1.5")
  }
}

apply(plugin = "com.github.alexeykorshun.slack-build-notify")

Using the plugins DSL:

plugins {
  id "com.github.alexeykorshun.slack-build-notify" version "0.1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.alexeykorshun:slack-build-notify:0.1.5"
  }
}

apply plugin: "com.github.alexeykorshun.slack-build-notify"

Learn how to apply plugins to subprojects