-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle
49 lines (41 loc) · 1.34 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
47
48
49
apply plugin: "java"
apply plugin: "maven-publish"
apply plugin: "org.embulk.embulk-plugins"
group = "${rootProject.group}"
version = "${rootProject.version}"
description = "Loads records from Example."
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
}
dependencies {
compileOnly "org.embulk:embulk-api:0.10.18"
compileOnly "org.embulk:embulk-spi:0.10.18"
compile(project(":")) {
exclude group: "org.msgpack", module: "msgpack-core"
}
compile("org.embulk:embulk-util-retryhelper-jaxrs:0.8.0") {
exclude group: "org.slf4j", module: "slf4j-api"
}
compile("org.glassfish.jersey.core:jersey-client:2.25.1") {
exclude group: "javax.inject", module: "javax.inject"
}
testCompile "org.embulk:embulk-api:0.10.18"
testCompile "org.embulk:embulk-core:0.10.18"
testCompile "org.embulk:embulk-core:0.10.18:tests"
testCompile "org.embulk:embulk-deps:0.10.18"
}
embulkPlugin {
mainClass = "org.embulk.input.example.ExampleInputPlugin"
category = "input"
type = "example"
}
gem {
authors = [ "Dai MIKURUBE" ]
email = [ "dmikurube@treasure-data.com" ]
summary = "Example input plugin for Embulk"
homepage = "https://github.com/embulk/embulk-base-restclient/tree/master/embulk-input-example"
licenses = [ "Apache-2.0" ]
}