Search Gradle plugins

Version 0.0.1 (latest)

Created 28 March 2023.

Send static or dynamic alerts to a Slack WebHook or Bot

Using the plugins DSL:

plugins {
  id("com.benrhine.slack-alerts-groovy") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.benrhine:slack-alerts-groovy:0.0.1")
  }
}

apply(plugin = "com.benrhine.slack-alerts-groovy")

Using the plugins DSL:

plugins {
  id "com.benrhine.slack-alerts-groovy" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.benrhine:slack-alerts-groovy:0.0.1"
  }
}

apply plugin: "com.benrhine.slack-alerts-groovy"

Learn how to apply plugins to subprojects