搜索Gradle插件

版本 0.0.1 (最新版)

0.0.1

创建于2023年3月28日。

将静态或动态警报发送到Slack WebHook或Bot

使用插件DSL

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

使用旧插件应用

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

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

使用插件DSL

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

使用旧插件应用

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

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

了解如何将插件应用于子项目