@@ -46,6 +46,29 @@ dependencies {
46
46
exclude group : " commons-logging" , module : " commons-logging"
47
47
}
48
48
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
+
49
72
compile(" org.embulk:embulk-util-config:0.3.1" ) {
50
73
// Jackson libraries conflict with embulk-core before v0.10.32.
51
74
// They are once excluded here, and re-added explicitly below.
0 commit comments