com.github.alexeykorshun.slack-build-notify
用于通知Slack频道构建完成的插件
https://github.com/AlexeyKorshun/slack-work-notify
来源: https://github.com/AlexeyKorshun/slack-work-notify.git
使用 插件 DSL
plugins {
id("com.github.alexeykorshun.slack-build-notify") version "0.3.5"
}
使用 旧式插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.alexeykorshun:slack-build-notify:0.3.5")
}
}
apply(plugin = "com.github.alexeykorshun.slack-build-notify")
使用 插件 DSL
plugins {
id "com.github.alexeykorshun.slack-build-notify" version "0.3.5"
}
使用 旧式插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.alexeykorshun:slack-build-notify:0.3.5"
}
}
apply plugin: "com.github.alexeykorshun.slack-build-notify"