io.github.oleksiiparf.slack-webhook
Owner: Oleksii Parfeniuk
Gradle plugin that create tasks to post messages on Slack Webhook
https://github.com/oleksiiparf/slack-webhook
Sources: https://github.com/oleksiiparf/slack-webhook
Version 1.0.0 (latest)
1.0.0
Created 26 July 2022.
Gradle plugin that create tasks to post messages on Slack Webhook
Using the plugins DSL:
plugins {
id("io.github.oleksiiparf.slack-webhook") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.oleksiiparf.slack-webhook:slack-webhook:1.0.0")
}
}
apply(plugin = "io.github.oleksiiparf.slack-webhook")
Using the plugins DSL:
plugins {
id "io.github.oleksiiparf.slack-webhook" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.oleksiiparf.slack-webhook:slack-webhook:1.0.0"
}
}
apply plugin: "io.github.oleksiiparf.slack-webhook"