com.github.newnewcoder.linepush
Owner: newnewcoder
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 0.0.1-SNAPSHOT
0.0.1-SNAPSHOT
Created 20 February 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 "0.0.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.newnewcoder:linepush:0.0.1-SNAPSHOT")
}
}
apply(plugin = "com.github.newnewcoder.linepush")
Using the plugins DSL:
plugins {
id "com.github.newnewcoder.linepush" version "0.0.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.newnewcoder:linepush:0.0.1-SNAPSHOT"
}
}
apply plugin: "com.github.newnewcoder.linepush"