Search Gradle plugins

Version 1.0.2 (latest)

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"

Learn how to apply plugins to subprojects