搜索Gradle插件

版本 0.3.5 (最新版)

0.3.5

创建于 2018年9月7日。

用于通知Slack频道构建完成的插件

使用 插件 DSL

plugins {
  id("com.github.alexeykorshun.slack-build-notify") version "0.3.5"
}

使用 旧式插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.alexeykorshun:slack-build-notify:0.3.5")
  }
}

apply(plugin = "com.github.alexeykorshun.slack-build-notify")

使用 插件 DSL

plugins {
  id "com.github.alexeykorshun.slack-build-notify" version "0.3.5"
}

使用 旧式插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.alexeykorshun:slack-build-notify:0.3.5"
  }
}

apply plugin: "com.github.alexeykorshun.slack-build-notify"

学习如何将插件应用于子项目