com.github.alexeykorshun.slack-build-notify
Owner: Alexei Korshun
Plugin for notify your slack channel about complete build
https://github.com/AlexeyKorshun/slack-work-notify
Sources: https://github.com/AlexeyKorshun/slack-work-notify.git
Version 0.3.5 (latest)
0.3.5
Created 07 September 2018.
Plugin for notify your slack channel about complete build
Using the plugins DSL:
plugins {
id("com.github.alexeykorshun.slack-build-notify") version "0.3.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.3.5")
}
}
apply(plugin = "com.github.alexeykorshun.slack-build-notify")
Using the plugins DSL:
plugins {
id "com.github.alexeykorshun.slack-build-notify" version "0.3.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.3.5"
}
}
apply plugin: "com.github.alexeykorshun.slack-build-notify"