@@ -183,72 +183,13 @@ $ mvn compile -P update
183
183
184
184
## Running the Plugin
185
185
186
- 1 . Clone [ googleapis] ( https://github.com/googleapis/googleapis ) and
187
- [ gapic-showcase] ( https://github.com/googleapis/gapic-showcase/ ) .
188
-
189
- 2 . Copy the protos from Showcase into googleapis/google/showcase.
190
-
191
- ``` sh
192
- mkdir googleapis/google/showcase
193
- cp -r gapic-showcase/schema/google/showcase/v1beta1 googleapis/google/showcase/v1beta1
194
- ```
195
-
196
- 3. Add the new microgenerator rules to
197
- ` googleapis/google/showcase/v1beta1/BUILD.bazel` file as follows:
198
-
199
- ` ` ` python
200
- load(
201
- " @com_google_googleapis_imports//:imports.bzl" ,
202
- # Existing rules here.
203
- " java_gapic_assembly_gradle_pkg" ,
204
- " java_gapic_library" ,
205
- " java_proto_library" ,
206
- " proto_library_with_info" ,
207
- )
208
-
209
- proto_library_with_info(
210
- name = " showcase_proto_with_info" ,
211
- deps = [
212
- " :showcase_proto" ,
213
- ],
214
- )
215
-
216
- java_proto_library(
217
- name = " showcase_java_proto" ,
218
- deps = [
219
- " :showcase_proto" ,
220
- ],
221
- )
222
-
223
- # This should either replace the existing monolith target or have a unique name
224
- # that includes "java_gapic".
225
- java_gapic_library(
226
- name = " showcase_java_gapic" ,
227
- srcs = [" :showcase_proto_with_info" ],
228
- grpc_service_config = " showcase_grpc_service_config.json" ,
229
- test_deps = [
230
- " :showcase_java_grpc" ,
231
- ],
232
- deps = [
233
- " :showcase_java_proto" ,
234
- ],
235
- )
236
-
237
- java_gapic_assembly_gradle_pkg(
238
- # This name should be unique from the existing target name.
239
- name = " google-cloud-showcase-v1beta1-java" ,
240
- deps = [
241
- # This is the new microgen target above.
242
- " :showcase_java_gapic" ,
243
- # The following targets already exist.
244
- " :showcase_java_grpc" ,
245
- " :showcase_java_proto" ,
246
- " :showcase_proto" ,
247
- ],
248
- )
249
- ` ` `
250
-
251
- 4. Point to local gapic-generator-java
186
+ See also above section "Showcase Integration Testing".
187
+
188
+ To generate a production GAPIC API:
189
+
190
+ 1 . Clone [ googleapis] ( https://github.com/googleapis/googleapis ) .
191
+
192
+ 2 . Point to local gapic-generator-java
252
193
253
194
Normally, googleapis's build pulls in googleapis/gapic-generator-java from the
254
195
Internet:
@@ -265,7 +206,7 @@ $ mvn compile -P update
265
206
)
266
207
```
267
208
268
- By replacing this portion using the built-in local_repository rule, you can mak
209
+ By replacing this portion using the built-in local_repository rule, you can make
269
210
it refer to your local development repo:
270
211
271
212
```
@@ -275,12 +216,7 @@ $ mvn compile -P update
275
216
)
276
217
```
277
218
278
- 5. Build the new target.
279
-
280
- ```sh
281
- cd googleapis
282
- bazel build //google/showcase/v1beta1:showcase_java_gapic
283
- ```
219
+ 3 . Build the new target.
284
220
285
221
You can generate any client library based on the protos within googleapis.
286
222
You just need the name of the service within the ` java_gapic_assembly_gradle_pkg `
0 commit comments