Skip to content

Commit

Permalink
Fix missing s3 dependency for Delta
Browse files Browse the repository at this point in the history
  • Loading branch information
istreeter committed Jun 4, 2024
1 parent f288f09 commit 02d08ca
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ object Dependencies {
val sentry = "io.sentry" % "sentry" % V.sentry
val awsGlue = "software.amazon.awssdk" % "glue" % V.awsSdk2
val awsS3 = "software.amazon.awssdk" % "s3" % V.awsSdk2
val awsS3Transfer = "software.amazon.awssdk" % "s3-transfer-manager" % V.awsSdk2
val awsSts = "software.amazon.awssdk" % "sts" % V.awsSdk2
val awsRegistry = "software.amazon.glue" % "schema-registry-serde" % V.awsRegistry

Expand Down Expand Up @@ -154,9 +155,10 @@ object Dependencies {
kinesis,
hadoopAws.exclude("software.amazon.awssdk", "bundle"),
awsCore, // Dependency on aws sdk v1 will likely be removed in the next release of hadoop-aws
awsGlue % Runtime,
awsS3 % Runtime,
awsSts % Runtime,
awsGlue % Runtime,
awsS3 % Runtime,
awsS3Transfer % Runtime,
awsSts % Runtime,
hadoopClient
) ++ commonRuntimeDependencies

Expand Down

0 comments on commit 02d08ca

Please sign in to comment.