Search Gradle plugins

com.github.newnewcoder.linepush

It's a gradle plugin using *line-bot message push api* to send line message.

https://github.com/newnewcoder/linepush

Sources: https://github.com/newnewcoder/linepush

Version 1.0.0 (latest)

Created 01 March 2017.

It's a gradle plugin using *line-bot message push api* to send line message.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects