搜索 Gradle 插件

com.github.newnewcoder.linepush

所有者: newnewcoder

这是一个使用 *line-bot 消息推送 API* 发送 line 消息的 Gradle 插件。

https://github.com/newnewcoder/linepush

来源: https://github.com/newnewcoder/linepush

版本 1.0.0 (最新)

1.0.0

创建于 2017 年 3 月 1 日。

这是一个使用 *line-bot 消息推送 API* 发送 line 消息的 Gradle 插件。

使用 插件 DSL

plugins {
  id("com.github.newnewcoder.linepush") version "1.0.0"
}

使用 遗留插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.newnewcoder:linepush:1.0.0")
  }
}

apply(plugin = "com.github.newnewcoder.linepush")

使用 插件 DSL

plugins {
  id "com.github.newnewcoder.linepush" version "1.0.0"
}

使用 遗留插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.newnewcoder:linepush:1.0.0"
  }
}

apply plugin: "com.github.newnewcoder.linepush"

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