com.github.kamatama41.embulk
Owner: Shinichi Ishimura
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.0
0.5.0
Created 24 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.0"
}
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.0")
}
}
apply(plugin = "com.github.kamatama41.embulk")
Using the plugins DSL:
plugins {
id "com.github.kamatama41.embulk" version "0.5.0"
}
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.0"
}
}
apply plugin: "com.github.kamatama41.embulk"