We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f30641 commit a5b7c32Copy full SHA for a5b7c32
build.sbt
@@ -4,7 +4,7 @@ version := "1.0"
4
5
scalaVersion := "2.13.5"
6
7
-val json4sVersion = "3.7.0-M11"
+val json4sVersion = "4.0.3"
8
val circeVersion = "0.13.0"
9
10
resolvers ++=
src/main/scala/jsonperf/JsonTest.scala
@@ -49,7 +49,7 @@ abstract class JsonTest[A <: AnyRef](implicit ev: scala.reflect.Manifest[A]) ext
49
import org.json4s.native.Serialization
50
implicit val formats = DefaultFormats
51
override def deserialize(json: String): A = {
52
- parse(json).extract[A]
+ org.json4s.native.JsonMethods.parse(json).extract[A]
53
}
54
override def serialize(a: A): String = {
55
Serialization.write(a)
0 commit comments