From 4044a53fdea5cd429fa2b6305c38206c8c5d8dcc Mon Sep 17 00:00:00 2001 From: xuwei-k <6b656e6a69@gmail.com> Date: Fri, 28 Jun 2024 08:16:55 +0900 Subject: [PATCH] Update dependencies --- .github/workflows/ci.yml | 2 +- build.sbt | 6 +++--- project/plugins.sbt | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d8272ac..dd4e60a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: fail-fast: false matrix: include: - - java: 11 + - java: 17 - java: 21 steps: - uses: actions/checkout@v4 diff --git a/build.sbt b/build.sbt index e5cc466..c776c8c 100644 --- a/build.sbt +++ b/build.sbt @@ -122,6 +122,7 @@ val scalapbPlayJson = crossProject(JVMPlatform, JSPlatform, NativePlatform) ) -> (Test / sourceManaged).value ), libraryDependencies ++= Seq( + "com.github.scalaprops" %%% "scalaprops-shapeless" % "0.5.1" % "test", "com.google.protobuf" % "protobuf-java-util" % "3.25.3" % "test", "com.google.protobuf" % "protobuf-java" % "3.25.3" % "protobuf" ) @@ -186,11 +187,10 @@ 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", - playJsonVersion := "3.0.4", + scalapbJsonCommonVersion := "0.10.0", + playJsonVersion := "3.1.0-M1", libraryDependencies ++= Seq( "com.github.scalaprops" %%% "scalaprops" % "0.9.1" % "test", - "com.github.scalaprops" %%% "scalaprops-shapeless" % "0.5.1" % "test", "io.github.scalapb-json" %%% "scalapb-json-common" % scalapbJsonCommonVersion.value, "com.thesamet.scalapb" %%% "scalapb-runtime" % scalapbVersion % "protobuf,test", "org.scalatest" %%% "scalatest" % "3.2.18" % "test" diff --git a/project/plugins.sbt b/project/plugins.sbt index 8e54800..742f606 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") @@ -8,7 +8,7 @@ addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2") addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2") -addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17") +addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.4") addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0") @@ -20,7 +20,7 @@ addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.7") -libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.11.15" +libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.11.17" if (sys.env.isDefinedAt("GITHUB_ACTION")) { Def.settings(