Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change AWS SDK to the version that support OIDC #307

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions embulk-output-redshift/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ dependencies {
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") {
compile("com.amazonaws:aws-java-sdk-s3:1.11.704") {
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") {
compile("com.amazonaws:aws-java-sdk-sts:1.11.704") {
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"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
com.amazonaws:aws-java-sdk-core:1.11.523
com.amazonaws:aws-java-sdk-kms:1.11.523
com.amazonaws:aws-java-sdk-s3:1.11.523
com.amazonaws:aws-java-sdk-sts:1.11.523
com.amazonaws:jmespath-java:1.11.523
com.amazonaws:aws-java-sdk-core:1.11.704
com.amazonaws:aws-java-sdk-kms:1.11.704
com.amazonaws:aws-java-sdk-s3:1.11.704
com.amazonaws:aws-java-sdk-sts:1.11.704
com.amazonaws:jmespath-java:1.11.704
com.fasterxml.jackson.core:jackson-annotations:2.6.7
com.fasterxml.jackson.core:jackson-core:2.6.7
com.fasterxml.jackson.core:jackson-databind:2.6.7
com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.6.7
com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.6.7
commons-codec:commons-codec:1.10
commons-codec:commons-codec:1.11
commons-logging:commons-logging:1.2
javax.validation:validation-api:1.1.0.Final
joda-time:joda-time:2.9.2
org.apache.httpcomponents:httpclient:4.5.5
org.apache.httpcomponents:httpcore:4.4.9
org.apache.httpcomponents:httpclient:4.5.9
org.apache.httpcomponents:httpcore:4.4.11
org.embulk:embulk-util-aws-credentials:0.4.0
org.embulk:embulk-util-config:0.3.0
org.embulk:embulk-util-json:0.1.1
Expand Down