Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwei-k committed Jun 7, 2024
1 parent e22f2a3 commit d44140e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
9 changes: 3 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,6 @@ val scalapbArgonaut = crossProject(JVMPlatform, JSPlatform, NativePlatform)
) -> (Test / sourceManaged).value
)
)
.nativeSettings(
nativeLinkStubs := true,
)

commonSettings

Expand Down Expand Up @@ -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) := {
Expand Down
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -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")

Expand All @@ -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"

0 comments on commit d44140e

Please sign in to comment.