Skip to content

Commit a5b7c32

Browse files
committed
Fix json4s version
1 parent 5f30641 commit a5b7c32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version := "1.0"
44

55
scalaVersion := "2.13.5"
66

7-
val json4sVersion = "3.7.0-M11"
7+
val json4sVersion = "4.0.3"
88
val circeVersion = "0.13.0"
99

1010
resolvers ++=

src/main/scala/jsonperf/JsonTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ abstract class JsonTest[A <: AnyRef](implicit ev: scala.reflect.Manifest[A]) ext
4949
import org.json4s.native.Serialization
5050
implicit val formats = DefaultFormats
5151
override def deserialize(json: String): A = {
52-
parse(json).extract[A]
52+
org.json4s.native.JsonMethods.parse(json).extract[A]
5353
}
5454
override def serialize(a: A): String = {
5555
Serialization.write(a)

0 commit comments

Comments
 (0)