File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ ThisBuild / cancelable := true
6
6
7
7
ThisBuild / connectInput := true
8
8
9
- val grpcVersion = " 1.64.0 "
9
+ val grpcVersion = " 1.64.2 "
10
10
11
11
lazy val protos = crossProject(JSPlatform , JVMPlatform )
12
12
.in(file(" protos" ))
13
13
.settings(
14
- Compile / PB .targets := Seq (
15
- scalapb.gen(grpc = true ) -> (Compile / sourceManaged).value,
14
+ Compile / PB .targets := Seq (
15
+ scalapb.gen(grpc = true ) -> (Compile / sourceManaged).value,
16
16
scalapb.zio_grpc.ZioCodeGenerator -> (Compile / sourceManaged).value
17
17
),
18
18
Compile / PB .protoSources := Seq (
Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ scalaVersion := "2.13.14"
2
2
3
3
resolvers ++= Resolver .sonatypeOssRepos(" snapshots" )
4
4
5
- val grpcVersion = " 1.64.0 "
5
+ val grpcVersion = " 1.64.2 "
6
6
7
7
Compile / PB .targets := Seq (
8
- scalapb.gen(grpc = true ) -> (Compile / sourceManaged).value,
8
+ scalapb.gen(grpc = true ) -> (Compile / sourceManaged).value,
9
9
scalapb.zio_grpc.ZioCodeGenerator -> (Compile / sourceManaged).value
10
10
)
11
11
12
12
libraryDependencies ++= Seq (
13
- " io.grpc" % " grpc-netty" % grpcVersion,
13
+ " io.grpc" % " grpc-netty" % grpcVersion,
14
14
" com.thesamet.scalapb" %% " scalapb-runtime-grpc" % scalapb.compiler.Version .scalapbVersion
15
15
)
16
16
Original file line number Diff line number Diff line change @@ -2,17 +2,17 @@ scalaVersion := "2.13.14"
2
2
3
3
resolvers ++= Resolver .sonatypeOssRepos(" snapshots" )
4
4
5
- val grpcVersion = " 1.64.0 "
5
+ val grpcVersion = " 1.64.2 "
6
6
7
7
Compile / PB .targets := Seq (
8
- scalapb.gen(grpc = true ) -> (Compile / sourceManaged).value,
8
+ scalapb.gen(grpc = true ) -> (Compile / sourceManaged).value,
9
9
scalapb.zio_grpc.ZioCodeGenerator -> (Compile / sourceManaged).value
10
10
)
11
11
12
12
libraryDependencies ++= Seq (
13
- " io.grpc" % " grpc-netty" % grpcVersion,
13
+ " io.grpc" % " grpc-netty" % grpcVersion,
14
14
" com.thesamet.scalapb" %% " scalapb-runtime-grpc" % scalapb.compiler.Version .scalapbVersion,
15
- " com.thesamet.scalapb" %% " scalapb-json4s" % " 0.12.0"
15
+ " com.thesamet.scalapb" %% " scalapb-json4s" % " 0.12.0"
16
16
)
17
17
18
18
run / fork := true
Original file line number Diff line number Diff line change 1
1
object Version {
2
2
val zio = " 2.0.22"
3
- val grpc = " 1.64.0 "
3
+ val grpc = " 1.64.2 "
4
4
}
You can’t perform that action at this time.
0 commit comments