@@ -28,7 +28,7 @@ lazy val commonSettings = Seq(
28
28
homepage := Some (url(" https://github.com/gnieh/diffson" ))
29
29
)
30
30
31
- lazy val diffson = tlCrossRootProject.aggregate(core, sprayJson, circe, playJson, testkit)
31
+ lazy val diffson = tlCrossRootProject.aggregate(core, sprayJson, circe, playJson, ujson, testkit)
32
32
33
33
lazy val core = crossProject(JSPlatform , JVMPlatform , NativePlatform )
34
34
.crossType(CrossType .Pure )
@@ -92,15 +92,16 @@ lazy val circe = crossProject(JSPlatform, JVMPlatform, NativePlatform)
92
92
)
93
93
.dependsOn(core, testkit % Test )
94
94
95
+ val ujsonVersion = " 3.1.3"
95
96
lazy val ujson = crossProject(JSPlatform , JVMPlatform , NativePlatform )
96
97
.crossType(CrossType .Full )
97
98
.in(file(" ujson" ))
98
99
.settings(commonSettings : _* )
99
100
.settings(
100
101
name := " diffson-ujson" ,
101
102
libraryDependencies ++= Seq (
102
- " com.lihaoyi" %% " ujson" % " 3.1.4 " ,
103
- " com.lihaoyi" %% " upickle" % " 3.1.4 "
103
+ " com.lihaoyi" %%% " ujson" % ujsonVersion ,
104
+ " com.lihaoyi" %%% " upickle" % ujsonVersion,
104
105
)
105
106
)
106
107
.dependsOn(core, testkit % Test )
0 commit comments