org.embulk.plugins.gradle
Owner: Embulk
Build and publish Embulk Java plugins
Sources: https://github.com/embulk/embulk-plugins-gradle-plugin
Version 0.0.2-SNAPSHOT
0.0.2-SNAPSHOT
Created 15 September 2017.
Build and publish Embulk Java plugins
Using the plugins DSL:
plugins {
id("org.embulk.plugins.gradle") version "0.0.2-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.embulk.plugins.gradle:embulk-plugins-gradle-plugin:0.0.2-SNAPSHOT")
}
}
apply(plugin = "org.embulk.plugins.gradle")
Using the plugins DSL:
plugins {
id "org.embulk.plugins.gradle" version "0.0.2-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.embulk.plugins.gradle:embulk-plugins-gradle-plugin:0.0.2-SNAPSHOT"
}
}
apply plugin: "org.embulk.plugins.gradle"