搜索Gradle插件

版本 1.0.2 (最新)

1.0.2

创建于2019年6月18日。

创建用于在Slack WebHook上发送消息的任务的Gradle插件

使用插件DSL

plugins {
  id("luisrjaeger.slack-messaging") version "1.0.2"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("br.com.luisrjaeger:slack-messaging:1.0.2")
  }
}

apply(plugin = "luisrjaeger.slack-messaging")

使用插件DSL

plugins {
  id "luisrjaeger.slack-messaging" version "1.0.2"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "br.com.luisrjaeger:slack-messaging:1.0.2"
  }
}

apply plugin: "luisrjaeger.slack-messaging"

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