Skip to content

Commit

Permalink
fix: add missing dependencies in Gradle for "self-service" library ge…
Browse files Browse the repository at this point in the history
…neration (#884)
  • Loading branch information
chanseokoh committed Jan 4, 2022
1 parent 6af0e18 commit 3adac5e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions rules_java_gapic/resources/gradle/client_grpc.gradle.tmpl
Expand Up @@ -10,6 +10,8 @@ dependencies {
testImplementation 'com.google.api:gax:{{version.gax}}:testlib'
implementation 'com.google.api:gax-grpc:{{version.gax_grpc}}'
testImplementation 'com.google.api:gax-grpc:{{version.gax_grpc}}:testlib'
implementation 'io.grpc:grpc-protobuf:{{version.io_grpc}}'
testImplementation 'io.grpc:grpc-stub:{{version.io_grpc}}'
testImplementation 'io.grpc:grpc-netty-shaded:{{version.io_grpc}}'
testImplementation '{{maven.junit_junit}}'
{{extra_deps}}
Expand Down
2 changes: 2 additions & 0 deletions rules_java_gapic/resources/gradle/client_grpcrest.gradle.tmpl
Expand Up @@ -12,6 +12,8 @@ dependencies {
testImplementation 'com.google.api:gax-grpc:{{version.gax_grpc}}:testlib'
implementation 'com.google.api:gax-httpjson:{{version.gax_httpjson}}'
testImplementation 'com.google.api:gax-httpjson:{{version.gax_httpjson}}:testlib'
implementation 'io.grpc:grpc-protobuf:{{version.io_grpc}}'
testImplementation 'io.grpc:grpc-stub:{{version.io_grpc}}'
testImplementation 'io.grpc:grpc-netty-shaded:{{version.io_grpc}}'
testImplementation '{{maven.junit_junit}}'
{{extra_deps}}
Expand Down
1 change: 1 addition & 0 deletions rules_java_gapic/resources/gradle/proto.gradle.tmpl
Expand Up @@ -7,6 +7,7 @@ javadoc.options.encoding = 'UTF-8'

dependencies {
implementation 'com.google.protobuf:protobuf-java:{{version.com_google_protobuf}}'
implementation '{{maven.com_google_guava_guava}}'
implementation '{{maven.com_google_api_api_common}}'
implementation '{{maven.com_google_api_grpc_proto_google_common_protos}}'
{{extra_deps}}
Expand Down

0 comments on commit 3adac5e

Please sign in to comment.