-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathbuild.gradle
51 lines (46 loc) · 1.72 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
dependencies {
implementation(project(path: ":embulk-output-jdbc", configuration: "runtimeElements"))
compileOnly "org.postgresql:postgresql:9.4-1205-jdbc41"
defaultJdbcDriver 'org.postgresql:postgresql:9.4-1205-jdbc41'
testImplementation project(':embulk-output-jdbc').sourceSets.test.output
testImplementation "org.postgresql:postgresql:9.4-1205-jdbc41"
testImplementation "org.embulk:embulk-formatter-csv:0.10.42"
testImplementation "org.embulk:embulk-input-file:0.10.42"
testImplementation "org.embulk:embulk-output-file:0.10.42"
testImplementation "org.embulk:embulk-parser-csv:0.10.42"
}
embulkPlugin {
mainClass = "org.embulk.output.PostgreSQLOutputPlugin"
category = "output"
type = "postgresql"
}
publishing {
publications {
maven(MavenPublication) {
pom { // https://central.sonatype.org/pages/requirements.html
developers {
developer {
name = "Sadayuki Furuhashi"
email = "[email protected]"
}
developer {
name = "takumakanari"
email = "[email protected]"
}
developer {
name = "Hitoshi Tanaka"
email = "[email protected]"
}
developer {
name = "Hiroyuki Sato"
email = "[email protected]"
}
developer {
name = "Dai MIKURUBE"
email = "[email protected]"
}
}
}
}
}
}