gRPCクライアントを作成しようとしています。スケーラでgRPC ManagedChannelを作成できません
val channel = ManagedChannelBuilder.forAddress(host, port).usePlaintext(true).build
のために私は、このコンパイル時のエラーgRPCは、Java用に構築されて
Error:(18, 87) value build is not a member of ?0
val channel = ManagedChannelBuilder.forAddress(host, port).usePlaintext(true).build
を取得します。私のプロジェクトは、protobufファイルと生成されたコードが別々のモジュールにあるマルチモジュールのmavenプロジェクトです。