luisrjaeger.slack-messaging
Owner: Luís Ricardo Jaeger
Gradle plugin that create tasks to post messages on Slack WebHook
https://github.com/luisrjaeger/slack-messaging
Sources: https://github.com/luisrjaeger/slack-messaging
Version 1.0.2 (latest)
1.0.2
Created 18 June 2019.
Gradle plugin that create tasks to post messages on Slack WebHook
Using the plugins DSL:
plugins {
id("luisrjaeger.slack-messaging") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("br.com.luisrjaeger:slack-messaging:1.0.2")
}
}
apply(plugin = "luisrjaeger.slack-messaging")
Using the plugins DSL:
plugins {
id "luisrjaeger.slack-messaging" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "br.com.luisrjaeger:slack-messaging:1.0.2"
}
}
apply plugin: "luisrjaeger.slack-messaging"