diff --git a/build.sbt b/build.sbt index bab86779..ea8248b6 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ import org.scalajs.linker.interface.ModuleInitializer val Scala3 = "3.3.1" -val Scala213 = "2.13.10" +val Scala213 = "2.13.14" val Scala212 = "2.12.18" diff --git a/examples/fullapp/build.sbt b/examples/fullapp/build.sbt index af12cf36..ad6e1392 100644 --- a/examples/fullapp/build.sbt +++ b/examples/fullapp/build.sbt @@ -1,6 +1,6 @@ ThisBuild / resolvers ++= Resolver.sonatypeOssRepos("snapshots") -ThisBuild / scalaVersion := "2.13.10" +ThisBuild / scalaVersion := "2.13.14" ThisBuild / cancelable := true @@ -11,8 +11,8 @@ val grpcVersion = "1.50.1" 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( diff --git a/examples/helloworld/build.sbt b/examples/helloworld/build.sbt index 37dac127..4551418e 100644 --- a/examples/helloworld/build.sbt +++ b/examples/helloworld/build.sbt @@ -1,16 +1,16 @@ -scalaVersion := "2.13.10" +scalaVersion := "2.13.14" resolvers ++= Resolver.sonatypeOssRepos("snapshots") val grpcVersion = "1.50.1" 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 ) diff --git a/examples/routeguide/build.sbt b/examples/routeguide/build.sbt index 2447eaea..8b55ecbd 100644 --- a/examples/routeguide/build.sbt +++ b/examples/routeguide/build.sbt @@ -1,18 +1,18 @@ -scalaVersion := "2.13.10" +scalaVersion := "2.13.14" resolvers ++= Resolver.sonatypeOssRepos("snapshots") val grpcVersion = "1.50.1" 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