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 27, 2024
1 parent b13c3dd commit 4044a53
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
include:
- java: 11
- java: 17
- java: 21
steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down Expand Up @@ -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"
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 @@ -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")

Expand All @@ -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(
Expand Down

0 comments on commit 4044a53

Please sign in to comment.