forked from embulk/embulk-output-jdbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
30 lines (27 loc) · 1.32 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
dependencies {
compile(project(path: ":embulk-output-jdbc", configuration: "runtimeElements"))
compile(project(path: ":embulk-output-postgresql", configuration: "runtimeElements"))
compile "org.postgresql:postgresql:9.4-1205-jdbc41"
compile("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"
}
compile("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"
}
compile("org.embulk.input.s3:embulk-util-aws-credentials:0.3.5") {
exclude group: "org.embulk", module: "embulk-core"
exclude group: "org.slf4j", module: "slf4j-api"
}
testCompile project(':embulk-output-jdbc').sourceSets.test.output
}
embulkPlugin {
mainClass = "org.embulk.output.RedshiftOutputPlugin"
category = "output"
type = "redshift"
}