-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathbuild.gradle
72 lines (67 loc) · 2.82 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
dependencies {
implementation(project(path: ":embulk-output-jdbc", configuration: "runtimeElements"))
implementation(project(path: ":embulk-output-postgresql", configuration: "runtimeElements"))
implementation "org.postgresql:postgresql:9.4-1205-jdbc41"
implementation("com.amazonaws:aws-java-sdk-s3:1.11.523") {
exclude group: "joda-time", module: "joda-time"
exclude group: "com.fasterxml.jackson.core", module: "jackson-annotations"
exclude group: "com.fasterxml.jackson.core", module: "jackson-databind"
exclude group: "com.fasterxml.jackson.core", module: "jackson-core"
}
implementation("com.amazonaws:aws-java-sdk-sts:1.11.523") {
exclude group: "joda-time", module: "joda-time"
exclude group: "com.fasterxml.jackson.core", module: "jackson-annotations"
exclude group: "com.fasterxml.jackson.core", module: "jackson-databind"
exclude group: "com.fasterxml.jackson.core", module: "jackson-core"
}
implementation("org.embulk:embulk-util-aws-credentials:0.4.2") {
exclude group: "org.slf4j", module: "slf4j-api"
}
// Joda-Time has been removed from Embulk since v0.10.30.
// Ordinary plugins no longer need Joda-Time, but embulk-output-redshift depends on Joda-Time as aws-java-sdk-s3 depends.
implementation "joda-time:joda-time:2.9.2"
testImplementation project(':embulk-output-jdbc').sourceSets.test.output
}
embulkPlugin {
mainClass = "org.embulk.output.RedshiftOutputPlugin"
category = "output"
type = "redshift"
}
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 = "Hiroyuki Sato"
email = "[email protected]"
}
developer {
name = "Antoine Augusti"
email = "[email protected]"
}
developer {
name = "Michael Jalkio"
email = "[email protected]"
}
developer {
name = "Yutaka Nishimura"
email = "[email protected]"
}
developer {
name = "Dai MIKURUBE"
email = "[email protected]"
}
}
}
}
}
}