Skip to content

Commit

Permalink
fix jackson version mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
oguzhanunlu committed Oct 30, 2024
1 parent 790e67b commit 7b55bf4
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ object Dependencies {
val netty = "4.1.114.Final"
val pubsubSdk = "1.134.1"
val avro = "1.11.4"
val jackson = "2.17.2"

// tests
val specs2 = "4.20.0"
Expand Down Expand Up @@ -103,14 +104,16 @@ object Dependencies {
val awsRegistry = "software.amazon.glue" % "schema-registry-serde" % V.awsRegistry

// transitive overrides
val protobuf = "com.google.protobuf" % "protobuf-java" % V.protobuf
val snappy = "org.xerial.snappy" % "snappy-java" % V.snappy
val hadoopYarn = "org.apache.hadoop" % "hadoop-yarn-server-resourcemanager" % V.hadoop
val thrift = "org.apache.thrift" % "libthrift" % V.thrift
val netty = "io.netty" % "netty-all" % V.netty
val awsCore = "com.amazonaws" % "aws-java-sdk-core" % V.awsSdk1
val pubsubSdk = "com.google.cloud" % "google-cloud-pubsub" % V.pubsubSdk
val avro = "org.apache.avro" % "avro" % V.avro
val protobuf = "com.google.protobuf" % "protobuf-java" % V.protobuf
val snappy = "org.xerial.snappy" % "snappy-java" % V.snappy
val hadoopYarn = "org.apache.hadoop" % "hadoop-yarn-server-resourcemanager" % V.hadoop
val thrift = "org.apache.thrift" % "libthrift" % V.thrift
val netty = "io.netty" % "netty-all" % V.netty
val awsCore = "com.amazonaws" % "aws-java-sdk-core" % V.awsSdk1
val pubsubSdk = "com.google.cloud" % "google-cloud-pubsub" % V.pubsubSdk
val avro = "org.apache.avro" % "avro" % V.avro
val jacksonDT = "com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % V.jackson
val jacksonMS = "com.fasterxml.jackson.module" %% "jackson-module-scala" % V.jackson

// snowplow
val streamsCore = "com.snowplowanalytics" %% "streams-core" % V.streams
Expand Down Expand Up @@ -149,6 +152,8 @@ object Dependencies {
Spark.coreForIcebergDelta % Provided,
Spark.sqlForIcebergDelta % Provided,
iceberg % Provided,
jacksonDT,
jacksonMS,
igluClientHttp4s,
decline,
sentry,
Expand Down

0 comments on commit 7b55bf4

Please sign in to comment.