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 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"

Learn how to apply plugins to subprojects