diff --git a/build.sbt b/build.sbt index d2358363..d2e8055a 100644 --- a/build.sbt +++ b/build.sbt @@ -7,7 +7,7 @@ lazy val supportedScalaVersions = List( scala212 ) -val Java11 = JavaSpec.temurin("11") +val Java11 = JavaSpec.temurin("11") lazy val srdfVersion = "0.1.122" lazy val utilsVersion = "0.2.25" @@ -21,7 +21,7 @@ lazy val circeVersion = "0.14.2" lazy val commonsTextVersion = "1.8" lazy val declineVersion = "2.4.1" lazy val fansiVersion = "0.3.0" -lazy val fs2Version = "3.4.0" +lazy val fs2Version = "3.9.3" lazy val jenaVersion = "4.3.2" lazy val junitVersion = "4.13.2" lazy val junitInterfaceVersion = "0.13.3" @@ -73,7 +73,6 @@ lazy val wdtkUtil = "org.wikidata.wdtk" % "wdtk-util" % wikidataToolkitVersion lazy val scalacheck = "org.scalacheck" %% "scalacheck" % scalacheckVersion lazy val typesafeConfig = "com.typesafe" % "config" % typesafeConfigVersion - lazy val logbackClassic = "ch.qos.logback" % "logback-classic" % logbackVersion lazy val scalaLogging = "com.typesafe.scala-logging" %% "scala-logging" % scalaLoggingVersion @@ -252,7 +251,7 @@ lazy val wshex = project .settings( crossScalaVersions := supportedScalaVersions, libraryDependencies ++= Seq( - utils, + utils, catsCore, catsKernel, circeCore, @@ -269,7 +268,7 @@ lazy val wshex = project scalaCollCompat, srdfJena, munit % Test, - munitEffect % Test, + munitEffect % Test ), testFrameworks += new TestFramework("munit.Framework") ) @@ -581,5 +580,7 @@ lazy val commonSettings = compilationSettings ++ sharedDependencies ++ Seq( url = url("https://weso.labra.es") ) ), - libraryDependencies += compilerPlugin("com.github.ghik" % "zerowaste" % "0.2.1" cross CrossVersion.full) + libraryDependencies += compilerPlugin( + ("com.github.ghik" % "zerowaste" % "0.2.1").cross(CrossVersion.full) + ) ) ++ warnUnusedImport