Skip to content

Commit

Permalink
adding instruction for arbitrary target
Browse files Browse the repository at this point in the history
  • Loading branch information
suztomo committed Dec 13, 2022
1 parent c51e51b commit 83d2607
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,20 @@
5. Build the new target.
```sh
cd googleapis
bazel build //google/showcase/v1beta1:showcase_java_gapic
```
```sh
cd googleapis
bazel build //google/showcase/v1beta1:showcase_java_gapic
```
You can generate any client library based on the protos within googleapis.
You just need the name of the service within the `java_gapic_assembly_gradle_pkg`
rules within the service's `BUILD.bazel` file.
For instance, to run your local generator on the `speech`'s v2 service, you can
run:
```
bazel build //google/cloud/speech/v2:google-cloud-speech-v2-java
```

0 comments on commit 83d2607

Please sign in to comment.