Skip to content

Commit

Permalink
Remove jackson dependency (#1096)
Browse files Browse the repository at this point in the history
Fixes #1095
  • Loading branch information
erikvanoosten authored Oct 30, 2023
1 parent a4ec8e0 commit 2086cb2
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ lazy val embeddedKafkaVersion = "3.6.0" // Should be the same as kafkaVersion, e

lazy val kafkaClients = "org.apache.kafka" % "kafka-clients" % kafkaVersion
lazy val scalaCollectionCompat = "org.scala-lang.modules" %% "scala-collection-compat" % "2.11.0"
lazy val jacksonDatabind = "com.fasterxml.jackson.core" % "jackson-databind" % "2.15.3"
lazy val logback = "ch.qos.logback" % "logback-classic" % "1.3.11"

enablePlugins(ZioSbtEcosystemPlugin, ZioSbtCiPlugin)
Expand Down Expand Up @@ -103,7 +102,6 @@ lazy val zioKafka =
.settings(
libraryDependencies ++= Seq(
kafkaClients,
jacksonDatabind,
scalaCollectionCompat
)
)
Expand Down Expand Up @@ -143,7 +141,6 @@ lazy val zioKafkaTest =
.settings(
libraryDependencies ++= Seq(
kafkaClients,
jacksonDatabind,
logback % Test,
"dev.zio" %% "zio-logging-slf4j" % "2.1.14" % Test,
scalaCollectionCompat
Expand Down

0 comments on commit 2086cb2

Please sign in to comment.