We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ab54ec commit e4b88c9Copy full SHA for e4b88c9
compiler/README.md
@@ -33,21 +33,21 @@ protobuf {
33
artifact = "com.google.protobuf:protoc:YOUR_PROTOBUF_VERSION"
34
}
35
plugins {
36
- id("grpc") {
+ create("grpc") {
37
artifact = "io.grpc:protoc-gen-grpc-java:YOUR_GRPC_VERSION"
38
39
- id("grpckt") {
+ create("grpckt") {
40
artifact = "io.grpc:protoc-gen-grpc-kotlin:YOUR_GRPC_KOTLIN_VERSION:jdk8@jar"
41
42
43
generateProtoTasks {
44
all().forEach {
45
it.plugins {
46
- id("grpc")
47
- id("grpckt")
+ create("grpc")
+ create("grpckt")
48
49
it.builtins {
50
- id("kotlin")
+ create("kotlin")
51
52
53
0 commit comments