Search Gradle plugins

com.github.kamatama41.embulk

A Gradle plugin that provides some helpful tasks for your Embulk plugin's development.

https://github.com/kamatama41/gradle-embulk-plugin

Sources: https://github.com/kamatama41/gradle-embulk-plugin

Version 0.5.1

Created 31 March 2019.

A Gradle plugin that provides some helpful tasks for your Embulk plugin's development.

Using the plugins DSL:

plugins {
  id("com.github.kamatama41.embulk") version "0.5.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.kamatama41:gradle-embulk-plugin:0.5.1")
  }
}

apply(plugin = "com.github.kamatama41.embulk")

Using the plugins DSL:

plugins {
  id "com.github.kamatama41.embulk" version "0.5.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.kamatama41:gradle-embulk-plugin:0.5.1"
  }
}

apply plugin: "com.github.kamatama41.embulk"

Learn how to apply plugins to subprojects