From 05b7351f0fbddfc3595aff5a1dd43e25f49d37ed Mon Sep 17 00:00:00 2001 From: Raymond Dodge Date: Fri, 7 Jun 2024 10:50:12 -0400 Subject: [PATCH] [build] Update scala-java-time to 2.6.0 Re-enable the native builds of the time parsers --- build.sbt | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 7ce22cb..f7c6fac 100644 --- a/build.sbt +++ b/build.sbt @@ -202,11 +202,23 @@ lazy val time = (projectMatrix in file("TimeParser")) ), Seq( libraryDependencies ++= Seq( - "io.github.cquiroz" %%% "scala-java-time" % "2.5.0", + "io.github.cquiroz" %%% "scala-java-time" % "2.6.0", ), ) ++ sharedJsSettings, ) + .nativePlatform( + scalaVersions = Seq( + scala212Ver, + scala213Ver, + scala3Ver, + ), + Seq( + libraryDependencies ++= Seq( + "io.github.cquiroz" %%% "scala-java-time" % "2.6.0", + ), + ) + ) lazy val uri = (projectMatrix in file("UriParser")) .dependsOn(base)