-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathbuild.gradle
74 lines (69 loc) · 2.65 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
dependencies {
implementation(project(path: ":embulk-input-jdbc", configuration: "runtimeElements"))
compileOnly "org.postgresql:postgresql:9.4-1205-jdbc41"
defaultJdbcDriver 'org.postgresql:postgresql:9.4-1205-jdbc41'
testImplementation "com.google.guava:guava:18.0"
testImplementation "org.embulk:embulk-formatter-csv:0.11.1"
testImplementation "org.embulk:embulk-input-file:0.11.0"
testImplementation "org.embulk:embulk-output-file:0.11.0"
testImplementation "org.embulk:embulk-parser-csv:0.11.3"
testImplementation "org.postgresql:postgresql:9.4-1205-jdbc41"
}
embulkPlugin {
mainClass = "org.embulk.input.postgresql.PostgreSQLInputPlugin"
category = "input"
type = "postgresql"
additionalDependencyDeclarations = [
[ groupId: "org.postgresql", artifactId: "postgresql", version: "9.4-1205-jdbc41", scope: "compile", optional: true ],
]
}
publishing {
publications {
maven(MavenPublication) {
pom { // https://central.sonatype.org/pages/requirements.html
developers {
developer {
name = "Sadayuki Furuhashi"
email = "[email protected]"
}
developer {
name = "Hitoshi Tanaka"
email = "[email protected]"
}
developer {
name = "Tomohiro Hashidate"
email = "[email protected]"
}
developer {
name = "You Yamagata"
email = "[email protected]"
}
developer {
name = "Shinichi Ishimura"
email = "[email protected]"
}
developer {
name = "Muga Nishizawa"
email = "[email protected]"
}
developer {
name = "Khoa Nguyen"
email = "[email protected]"
}
developer {
name = "Trung Huynh"
email = "[email protected]"
}
developer {
name = "Satoshi Akama"
email = "[email protected]"
}
developer {
name = "Dai MIKURUBE"
email = "[email protected]"
}
}
}
}
}
}