-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (39 loc) · 1.23 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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 = "[email protected]"
description = "Dump records into multiple outputs"
homepage = "https://github.com/kamatama41/embulk-output-multi"
}
release {
git { requireBranch = 'master' }
}
afterReleaseBuild.dependsOn gemPush