hippiefahrzeug commented on issue #325:
URL: https://github.com/apache/pekko-grpc/issues/325#issuecomment-2162481404
thank you very much for your quick investigation! 🙏
I wasn't directly aware of that either, ich just when I kick off the build...
```
lazy val ngModel = (project in file("modules/grpc-model"))
.configs(Common.Configs.all: _*)
.enablePlugins(ScalafmtPlugin)
.settings(Common.settings)
.settings(
libraryDependencies ++= Seq(
"com.thesamet.scalapb" %% "scalapb-runtime" %
scalapb.compiler.Version.scalapbVersion % "protobuf",
),
libraryDependencies ++= Common.pekkoGrpcDependencies,
libraryDependencies ++= Common.ngTestDependencies,
PB.protocVersion := "3.17.3",
Compile / PB.targets := Seq(
scalapb.gen(
lenses = false,
flatPackage = true
) -> (Compile / sourceManaged).value
)
)
```
with:
```
val pekkoGrpcVersion = "1.0.2"
val pekkoGrpcDependencies = Seq(
"org.apache.pekko" %% "pekko-grpc-runtime" % pekkoVersion,
"org.apache.pekko" %% "pekko-grpc-runtime" % Common.pekkoVersion,
"org.apache.pekko" %% "pekko-grpc-codegen" % Common.pekkoVersion,
"org.apache.pekko" %% "pekko-grpc-scalapb-protoc-plugin" %
Common.pekkoVersion,
)
```
... I get the aforementioned error.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]