Skip to content

Commit 328a508

Browse files
committed
add dependencies
1 parent 43f43d5 commit 328a508

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

build.gradle

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,29 @@ dependencies {
4646
exclude group: "commons-logging", module: "commons-logging"
4747
}
4848

49+
compile("com.amazonaws:aws-java-sdk-sts:1.11.466") {
50+
// They conflict with embulk-core. They are once excluded here,
51+
// and added explicitly with versions exactly the same with embulk-core:0.10.29.
52+
exclude group: "com.fasterxml.jackson.core", module: "jackson-annotations"
53+
exclude group: "com.fasterxml.jackson.core", module: "jackson-core"
54+
exclude group: "com.fasterxml.jackson.core", module: "jackson-databind"
55+
exclude group: "joda-time", module: "joda-time"
56+
57+
// commons-logging api is provided by jcl-over-slf4j below.
58+
exclude group: "commons-logging", module: "commons-logging"
59+
}
60+
61+
compile("org.embulk:embulk-util-aws-credentials:0.4.1") {
62+
// They conflict with embulk-core. They are once excluded here,
63+
// and added explicitly with versions exactly the same with embulk-core:0.10.29.
64+
exclude group: "com.fasterxml.jackson.core", module: "jackson-annotations"
65+
exclude group: "com.fasterxml.jackson.core", module: "jackson-core"
66+
exclude group: "com.fasterxml.jackson.core", module: "jackson-databind"
67+
exclude group: "com.fasterxml.jackson.datatype", module: "jackson-datatype-jdk8"
68+
exclude group: "javax.validation", module: "validation-api"
69+
exclude group: "joda-time", module: "joda-time"
70+
}
71+
4972
compile("org.embulk:embulk-util-config:0.3.1") {
5073
// Jackson libraries conflict with embulk-core before v0.10.32.
5174
// They are once excluded here, and re-added explicitly below.

0 commit comments

Comments
 (0)