Skip to content

Commit

Permalink
Scalafmt
Browse files Browse the repository at this point in the history
  • Loading branch information
thesamet committed Oct 29, 2024
1 parent 96d444e commit 6a2251b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions examples/fullapp/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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/routeguide/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ 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 6a2251b

Please sign in to comment.