From 61ab794b2961c4e5d3130706275fd57fbc4c102e Mon Sep 17 00:00:00 2001 From: kciesielski Date: Wed, 3 Jul 2024 07:28:45 +0200 Subject: [PATCH] Enable nativePlatform for jsoniter --- build.sbt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.sbt b/build.sbt index 4793043ae0..3e7c5c7aaf 100644 --- a/build.sbt +++ b/build.sbt @@ -930,6 +930,10 @@ lazy val jsoniterScala: ProjectMatrix = (projectMatrix in file("json/jsoniter")) scalaVersions = scala2And3Versions, settings = commonJsSettings ) + .nativePlatform( + scalaVersions = List(scala3), + settings = commonNativeSettings + ) .dependsOn(core) lazy val zioJson: ProjectMatrix = (projectMatrix in file("json/zio"))