From 1b4e8244b477440b2c7aca31da066a3352204c7f Mon Sep 17 00:00:00 2001 From: xuwei-k <6b656e6a69@gmail.com> Date: Sat, 8 Jun 2024 07:30:07 +0900 Subject: [PATCH] Update dependencies --- build.sbt | 9 +++------ project/plugins.sbt | 6 +++--- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/build.sbt b/build.sbt index e3af860..68ddca8 100644 --- a/build.sbt +++ b/build.sbt @@ -127,9 +127,6 @@ val scalapbArgonaut = crossProject(JVMPlatform, JSPlatform, NativePlatform) ) -> (Test / sourceManaged).value ) ) - .nativeSettings( - nativeLinkStubs := true, - ) commonSettings @@ -165,14 +162,14 @@ lazy val commonSettings = Def.settings( Project.inConfig(Test)(sbtprotoc.ProtocPlugin.protobufConfigSettings), Compile / PB.targets := Nil, (Test / PB.protoSources) := Seq(baseDirectory.value.getParentFile / "shared/src/test/protobuf"), - scalapbJsonCommonVersion := "0.9.0", - argonautVersion := "6.3.9", + scalapbJsonCommonVersion := "0.10.0", + argonautVersion := "6.3.10", libraryDependencies ++= Seq( "com.github.scalaprops" %%% "scalaprops" % "0.9.1" % "test", "io.github.scalapb-json" %%% "scalapb-json-common" % scalapbJsonCommonVersion.value, "com.thesamet.scalapb" %%% "scalapb-runtime" % scalapbVersion % "protobuf,test", "io.argonaut" %%% "argonaut" % argonautVersion.value, - "com.lihaoyi" %%% "utest" % "0.8.2" % "test" + "com.lihaoyi" %%% "utest" % "0.8.3" % "test" ), testFrameworks += new TestFramework("utest.runner.Framework"), (Global / pomExtra) := { diff --git a/project/plugins.sbt b/project/plugins.sbt index 9f9a5b6..0b4d18c 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("com.github.scalaprops" % "sbt-scalaprops" % "0.4.4") +addSbtPlugin("com.github.scalaprops" % "sbt-scalaprops" % "0.5.0") addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0") @@ -16,8 +16,8 @@ addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.7") -addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17") +addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.3") addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2") -libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.11.15" +libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.11.17"