I am trying to use grpc-java v1.1.2 (build.gradle section below) but when I try to run the fat jar for the sample application, its throwing the exception given below. I do not s
The issue for me was, jar did not contain the dependent lib classes. I had to make this change to resolve it :
jar { ... from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } }
Which is just another way to create fat jar :)