Sha256: 1daff07a19af80fdd4e0912093cfa81d8f74748ba6c7223e00c79a1a81d746bf

Contents?: true

Size: 1.23 KB

Versions: 1

Compression:

Stored size: 1.23 KB

Contents

plugins {
    id "com.github.kamatama41.embulk" version "0.5.2"
    id "net.researchgate.release" version "2.8.0"
}

sourceCompatibility = 1.8
targetCompatibility = 1.8

repositories {
    maven { url 'http://kamatama41.github.com/maven-repository/repository' }
}

configurations {
    [compileClasspath, testCompileClasspath].each {
        it.resolutionStrategy.activateDependencyLocking()
    }
}

dependencies {
    testImplementation "org.embulk:embulk-deps-buffer:0.9.23"
    testImplementation "org.embulk:embulk-deps-config:0.9.23"
    testImplementation "org.embulk:embulk-standards:0.9.23"
    testImplementation "org.embulk:embulk-test:0.9.23"
    testImplementation "com.github.kamatama41:embulk-test-helpers:0.7.4"
    testImplementation "org.junit.jupiter:junit-jupiter-api:5.3.2"
    testImplementation "org.junit.jupiter:junit-jupiter-engine:5.3.2"
}

test {
    useJUnitPlatform()
}

embulk {
    version = "0.9.23"
    category = "output"
    name = "multi"
    authors = ["Shinichi ISHIMURA"]
    email = "shiketaudonko41@gmail.com"
    description = "Dump records into multiple outputs"
    homepage = "https://github.com/kamatama41/embulk-output-multi"
}

release {
    git { requireBranch = 'master' }
}
afterReleaseBuild.dependsOn gemPush

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
embulk-output-multi-0.5.0 build.gradle