io.github.oleksiiparf.slack-webhook
所有者: Oleksii Parfeniuk
Gradle 插件,用于创建向 Slack Webhook 发送消息的任务
https://github.com/oleksiiparf/slack-webhook
来源: https://github.com/oleksiiparf/slack-webhook
版本 1.0.0 (最新版)
1.0.0
创建于 2022 年 7 月 26 日。
Gradle 插件,用于创建向 Slack Webhook 发送消息的任务
使用 插件 DSL
plugins {
id("io.github.oleksiiparf.slack-webhook") version "1.0.0"
}
使用 遗留插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.oleksiiparf.slack-webhook:slack-webhook:1.0.0")
}
}
apply(plugin = "io.github.oleksiiparf.slack-webhook")
使用 插件 DSL
plugins {
id "io.github.oleksiiparf.slack-webhook" version "1.0.0"
}
使用 遗留插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.oleksiiparf.slack-webhook:slack-webhook:1.0.0"
}
}
apply plugin: "io.github.oleksiiparf.slack-webhook"