From f2e5841b6143582fe78680304c229d2e049fa0b4 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 6 May 2024 01:01:49 +0000 Subject: [PATCH] Update scala-library to 2.13.14 --- build.sbt | 2 +- examples/fullapp/build.sbt | 6 +++--- examples/helloworld/build.sbt | 6 +++--- examples/routeguide/build.sbt | 8 ++++---- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/build.sbt b/build.sbt index bab867792..ea8248b6d 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 af12cf361..ad6e13924 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 37dac1276..4551418ef 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 2447eaeac..8b55ecbd9 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