Skip to content

Commit d58b2e5

Browse files
authored
fix: focus 'Running the Plugin' documentation on googleapis, not showcase (#1196)
1 parent d926d4b commit d58b2e5

File tree

1 file changed

+9
-73
lines changed

1 file changed

+9
-73
lines changed

DEVELOPMENT.md

+9-73
Original file line numberDiff line numberDiff line change
@@ -183,72 +183,13 @@ $ mvn compile -P update
183183

184184
## Running the Plugin
185185

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
252193

253194
Normally, googleapis's build pulls in googleapis/gapic-generator-java from the
254195
Internet:
@@ -265,7 +206,7 @@ $ mvn compile -P update
265206
)
266207
```
267208

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
269210
it refer to your local development repo:
270211

271212
```
@@ -275,12 +216,7 @@ $ mvn compile -P update
275216
)
276217
```
277218

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.
284220

285221
You can generate any client library based on the protos within googleapis.
286222
You just need the name of the service within the `java_gapic_assembly_gradle_pkg`

0 commit comments

Comments
 (0)