Skip to content

Commit

Permalink
add sts dependency to relevant modules
Browse files Browse the repository at this point in the history
  • Loading branch information
sidharrth2002 committed Oct 9, 2023
1 parent ca3b8e1 commit d95b616
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions airbyte-commons-worker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ dependencies {
implementation libs.aws.java.sdk.s3
implementation libs.aws.java.sdk.sts
implementation libs.s3
implementation libs.sts

implementation project(':airbyte-api')
implementation project(':airbyte-commons')
Expand Down
1 change: 1 addition & 0 deletions airbyte-config/config-models/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ dependencies {
implementation libs.aws.java.sdk.s3
implementation libs.aws.java.sdk.sts
implementation libs.s3
implementation libs.sts
implementation libs.bundles.apache

compileOnly libs.lombok
Expand Down
1 change: 1 addition & 0 deletions airbyte-oauth/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ dependencies {
implementation libs.appender.log4j2
implementation libs.aws.java.sdk.s3
implementation libs.aws.java.sdk.sts
implementation libs.sts

implementation project(':airbyte-commons')
implementation project(':airbyte-config:config-models')
Expand Down
3 changes: 2 additions & 1 deletion airbyte-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ configurations.all {
// instead of versions from transitive dependencies
// Force to avoid updated version brought in transitively from Micronaut 3.8+
// that is incompatible with our current Helm setup
force libs.flyway.core, libs.s3, libs.aws.java.sdk.s3, libs.aws.java.sdk.sts
force libs.flyway.core, libs.s3, libs.aws.java.sdk.s3, libs.sts, libs.aws.java.sdk.sts
}
}

Expand All @@ -33,6 +33,7 @@ dependencies {
implementation libs.micronaut.security
implementation libs.flyway.core
implementation libs.s3
implementation libs.sts
implementation libs.aws.java.sdk.s3
implementation libs.aws.java.sdk.sts

Expand Down
3 changes: 2 additions & 1 deletion airbyte-workers/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ configurations.all {
resolutionStrategy {
// Ensure that the versions defined in deps.toml are used
// instead of versions from transitive dependencies
force libs.flyway.core, libs.jooq, libs.s3, libs.aws.java.sdk.s3, libs.aws.java.sdk.sts
force libs.flyway.core, libs.jooq, libs.s3, libs.aws.java.sdk.s3, libs.sts, libs.aws.java.sdk.sts
}
}

Expand All @@ -45,6 +45,7 @@ dependencies {
implementation libs.micronaut.cache.caffeine
implementation libs.jooq
implementation libs.s3
implementation libs.sts
implementation libs.aws.java.sdk.s3
implementation libs.aws.java.sdk.sts
implementation 'com.google.auth:google-auth-library-oauth2-http:1.4.0'
Expand Down
1 change: 1 addition & 0 deletions deps.toml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ quartz-scheduler = { module = "org.quartz-scheduler:quartz", version = "2.3.2" }
reactor-core = { module = "io.projectreactor:reactor-core", version.ref = "reactor" }
reactor-test = { module = "io.projectreactor:reactor-test", version.ref = "reactor" }
s3 = { module = "software.amazon.awssdk:s3", version = "2.16.84" }
sts = { module = "software.amazon.awssdk:sts", version = "2.20.162" }
segment-java-analytics = { module = "com.segment.analytics.java:analytics", version.ref = "segment" }
sentry-java = { module = "io.sentry:sentry", version.ref = "sentry" }
slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" }
Expand Down

0 comments on commit d95b616

Please sign in to comment.