Closed Fluf22 closed 1 month ago
As explained in https://github.com/json4s/json4s/issues/1520, you need to import an RC version of Scala3 staging for it to work properly. This is the only workaround for now.
build.sbt
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "3.3.4-RC3"
lazy val root = (project in file(".")) .settings( name := "test" )
libraryDependencies += "com.algolia" %% "algoliasearch-scala" % "2.3.4" libraryDependencies += "org.json4s" %% "json4s-native" % "4.1.0-M7" libraryDependencies += "org.scala-lang" %% "scala3-staging" % scalaVersion.value
Description
Minimal reproducible example:
This will produce the following error:
This issue is tracked here on the
json4s
library repository: https://github.com/json4s/json4s/issues/1520Client
All
Version
2.3.2
Relevant log output
No response