Skip to content

Commit

Permalink
Update scala-library to 2.13.15 (#658)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored Oct 29, 2024
1 parent 85a2396 commit 7b65589
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import org.scalajs.linker.interface.ModuleInitializer

val Scala3 = "3.3.4"

val Scala213 = "2.13.14"
val Scala213 = "2.13.15"

val Scala212 = "2.12.18"

Expand Down
6 changes: 3 additions & 3 deletions examples/fullapp/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ThisBuild / resolvers ++= Resolver.sonatypeOssRepos("snapshots")

ThisBuild / scalaVersion := "2.13.14"
ThisBuild / scalaVersion := "2.13.15"

ThisBuild / cancelable := true

Expand All @@ -11,8 +11,8 @@ val grpcVersion = "1.64.0"
lazy val protos = crossProject(JSPlatform, JVMPlatform)
.in(file("protos"))
.settings(
Compile / PB.targets := Seq(
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
Compile / PB.targets := Seq(
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
scalapb.zio_grpc.ZioCodeGenerator -> (Compile / sourceManaged).value
),
Compile / PB.protoSources := Seq(
Expand Down
6 changes: 3 additions & 3 deletions examples/helloworld/build.sbt
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
scalaVersion := "2.13.14"
scalaVersion := "2.13.15"

resolvers ++= Resolver.sonatypeOssRepos("snapshots")

val grpcVersion = "1.64.0"

Compile / PB.targets := Seq(
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
scalapb.zio_grpc.ZioCodeGenerator -> (Compile / sourceManaged).value
)

libraryDependencies ++= Seq(
"io.grpc" % "grpc-netty" % grpcVersion,
"io.grpc" % "grpc-netty" % grpcVersion,
"com.thesamet.scalapb" %% "scalapb-runtime-grpc" % scalapb.compiler.Version.scalapbVersion
)

Expand Down
8 changes: 4 additions & 4 deletions examples/routeguide/build.sbt
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
scalaVersion := "2.13.14"
scalaVersion := "2.13.15"

resolvers ++= Resolver.sonatypeOssRepos("snapshots")

val grpcVersion = "1.64.0"

Compile / PB.targets := Seq(
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
scalapb.zio_grpc.ZioCodeGenerator -> (Compile / sourceManaged).value
)

libraryDependencies ++= Seq(
"io.grpc" % "grpc-netty" % grpcVersion,
"io.grpc" % "grpc-netty" % grpcVersion,
"com.thesamet.scalapb" %% "scalapb-runtime-grpc" % scalapb.compiler.Version.scalapbVersion,
"com.thesamet.scalapb" %% "scalapb-json4s" % "0.12.0"
"com.thesamet.scalapb" %% "scalapb-json4s" % "0.12.0"
)

run / fork := true

0 comments on commit 7b65589

Please sign in to comment.