From 518befa2a511111eb3b45968141cf1542000704a Mon Sep 17 00:00:00 2001 From: firehooper Date: Wed, 20 Oct 2021 10:09:32 -0400 Subject: [PATCH] json4s 4.0.3; issue #509 --- build.sbt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 13bf92cf..288eb9f3 100644 --- a/build.sbt +++ b/build.sbt @@ -115,9 +115,9 @@ lazy val slickPgJson4s = (project in file("./addons/json4s")) name := "slick-pg_json4s", description := "Slick extensions for PostgreSQL - json4s module", libraryDependencies := mainDependencies(scalaVersion.value) ++ Seq( - "org.json4s" %% "json4s-ast" % "3.6.11", - "org.json4s" %% "json4s-core" % "3.6.11", - "org.json4s" %% "json4s-native" % "3.6.11" % "test" + "org.json4s" %% "json4s-ast" % "4.0.3", + "org.json4s" %% "json4s-core" % "4.0.3", + "org.json4s" %% "json4s-native" % "4.0.3" % "test" ) ) .dependsOn (slickPgCore % "test->test;compile->compile")