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.2 (latest)
0.5.2
Created 31 March 2019.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
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.2"
}
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.2")
}
}
apply(plugin = "com.github.kamatama41.embulk")
Using the plugins DSL:
plugins {
id "com.github.kamatama41.embulk" version "0.5.2"
}
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.2"
}
}
apply plugin: "com.github.kamatama41.embulk"