Is your feature request related to a problem? Please describe.
It's not documented that if you're using Protobuf (instead of Avro), the required dependencies are no longer automatically included in the build for cloudflow-proto, or Akka gRPC Plugin...
Is your feature request related to a specific runtime of Cloudflow or applicable for all runtimes?
2.3.1
Describe the solution you'd like
Documentation should include the need for the following changes:
- to project/plugins.sbt
addSbtPlugin("com.lightbend.akka.grpc" % "sbt-akka-grpc" % "2.1.3")
Note: version 2.1.4 seems to cause a conflict with Cloudflow, whereas 2.1.3 seems to work.
- to build.sbt:
lazy val cloudFlowVersion = "2.3.1"
...
enablePlugins(AkkaGrpcPlugin)
...
libraryDependencies ++= {
"com.lightbend.cloudflow" %% "cloudflow-proto" % cloudFlowVersion,
}