From dd51d29c7758eacd3550af72c93ec824a0861bde Mon Sep 17 00:00:00 2001 From: "s.chernykh" Date: Mon, 22 Apr 2024 13:14:54 +0500 Subject: [PATCH] fix deps for tethys --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 1ddbb99863..48633145f3 100644 --- a/build.sbt +++ b/build.sbt @@ -851,8 +851,8 @@ lazy val tethysJson = (projectMatrix in file("json/tethys-json")) name := "tethys-json", libraryDependencies ++= Seq( "com.tethys-json" %% "tethys-core" % tethysVersion, - "com.tethys-json" %% "tethys-jackson213" % tethysVersion, - "com.tethys-json" %% "tethys-derivation" % tethysVersion + "com.tethys-json" %% "tethys-jackson213" % tethysVersion % Test, + "com.tethys-json" %% "tethys-derivation" % tethysVersion % Test ), scalaTest )