xuwei-k / grpc-scala-sample

translated from grpc java examples with ScalaPB
BSD 3-Clause "New" or "Revised" License
65 stars 25 forks source link

Project doesn't compile #6

Closed gianluca-sabena closed 7 years ago

gianluca-sabena commented 7 years ago

If I checkout from master and run sbt compile I get a long list of errors....

xuwei-k commented 7 years ago

I assume you forgot git submodule update

thinkerou commented 6 years ago

Steps:

sbt:root> compile
[info] Compiling 2 Scala sources to /Users/thinkerou/Documents/OpenSourceCodes/grpc-scala-sample/grpc-scala/target/scala-2.12/classes ...
[error] /Users/thinkerou/Documents/OpenSourceCodes/grpc-scala-sample/grpc-scala/src/main/scala/io/grpc/examples/helloworld/HelloWorldClient.scala:37:36: object helloworld is not a member of package io.grpc.examples.helloworld
[error] import io.grpc.examples.helloworld.helloworld.{HelloRequest, GreeterGrpc}
[error]                                    ^
[error] /Users/thinkerou/Documents/OpenSourceCodes/grpc-scala-sample/grpc-scala/src/main/scala/io/grpc/examples/helloworld/HelloWorldClient.scala:38:36: object helloworld is not a member of package io.grpc.examples.helloworld
[error] import io.grpc.examples.helloworld.helloworld.GreeterGrpc.GreeterBlockingStub
[error]                                    ^
[error] /Users/thinkerou/Documents/OpenSourceCodes/grpc-scala-sample/grpc-scala/src/main/scala/io/grpc/examples/helloworld/HelloWorldClient.scala:64:29: not found: type GreeterBlockingStub
[error]   private val blockingStub: GreeterBlockingStub
[error]                             ^
[error] /Users/thinkerou/Documents/OpenSourceCodes/grpc-scala-sample/grpc-scala/src/main/scala/io/grpc/examples/helloworld/HelloWorldClient.scala:47:24: not found: value GreeterGrpc
[error]     val blockingStub = GreeterGrpc.blockingStub(channel)
[error]                        ^
[error] /Users/thinkerou/Documents/OpenSourceCodes/grpc-scala-sample/grpc-scala/src/main/scala/io/grpc/examples/helloworld/HelloWorldClient.scala:75:19: not found: value HelloRequest
[error]     val request = HelloRequest(name = name)
[error]                   ^
[error] /Users/thinkerou/Documents/OpenSourceCodes/grpc-scala-sample/grpc-scala/src/main/scala/io/grpc/examples/helloworld/HelloWorldClient.scala:75:37: reassignment to val
[error]     val request = HelloRequest(name = name)
[error]                                     ^
[warn] /Users/thinkerou/Documents/OpenSourceCodes/grpc-scala-sample/grpc-scala/src/main/scala/io/grpc/examples/helloworld/HelloWorldClient.scala:37:48: Unused import
[warn] import io.grpc.examples.helloworld.helloworld.{HelloRequest, GreeterGrpc}
[warn]                                                ^
[warn] /Users/thinkerou/Documents/OpenSourceCodes/grpc-scala-sample/grpc-scala/src/main/scala/io/grpc/examples/helloworld/HelloWorldClient.scala:37:62: Unused import
[warn] import io.grpc.examples.helloworld.helloworld.{HelloRequest, GreeterGrpc}
[warn]