Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.

Commit 26638cc

Browse files
committed
chore: Run owl manually.
Correct missing dependencies not generated by owl.
1 parent c42ce45 commit 26638cc

File tree

68 files changed

+34937
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+34937
-0
lines changed

google-cloud-datastore-bom/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,26 @@
5454
<artifactId>google-cloud-datastore</artifactId>
5555
<version>2.5.2-SNAPSHOT</version><!-- {x-version-update:google-cloud-datastore:current} -->
5656
</dependency>
57+
<dependency>
58+
<groupId>com.google.api.grpc</groupId>
59+
<artifactId>grpc-google-cloud-datastore-admin-v1</artifactId>
60+
<version>2.5.2-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-datastore-admin-v1:current} -->
61+
</dependency>
62+
<dependency>
63+
<groupId>com.google.api.grpc</groupId>
64+
<artifactId>grpc-google-cloud-datastore-v1</artifactId>
65+
<version>2.5.2-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-datastore-v1:current} -->
66+
</dependency>
5767
<dependency>
5868
<groupId>com.google.api.grpc</groupId>
5969
<artifactId>proto-google-cloud-datastore-v1</artifactId>
6070
<version>0.96.2-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-datastore-v1:current} -->
6171
</dependency>
72+
<dependency>
73+
<groupId>com.google.api.grpc</groupId>
74+
<artifactId>proto-google-cloud-datastore-admin-v1</artifactId>
75+
<version>2.5.2-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-datastore-admin-v1:current} -->
76+
</dependency>
6277
</dependencies>
6378
</dependencyManagement>
6479

google-cloud-datastore/pom.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@
1818
<site.installationModule>google-cloud-datastore</site.installationModule>
1919
</properties>
2020
<dependencies>
21+
<dependency>
22+
<groupId>com.google.api.grpc</groupId>
23+
<artifactId>grpc-google-cloud-datastore-v1</artifactId>
24+
<scope>test</scope>
25+
</dependency>
26+
<dependency>
27+
<groupId>com.google.api.grpc</groupId>
28+
<artifactId>grpc-google-cloud-datastore-admin-v1</artifactId>
29+
</dependency>
2130
<dependency>
2231
<groupId>com.google.cloud</groupId>
2332
<artifactId>google-cloud-core-http</artifactId>
@@ -26,6 +35,10 @@
2635
<groupId>com.google.api.grpc</groupId>
2736
<artifactId>proto-google-cloud-datastore-v1</artifactId>
2837
</dependency>
38+
<dependency>
39+
<groupId>com.google.api.grpc</groupId>
40+
<artifactId>proto-google-cloud-datastore-admin-v1</artifactId>
41+
</dependency>
2942
<dependency>
3043
<groupId>com.google.cloud.datastore</groupId>
3144
<artifactId>datastore-v1-proto-client</artifactId>
@@ -50,6 +63,10 @@
5063
<groupId>com.google.api</groupId>
5164
<artifactId>gax</artifactId>
5265
</dependency>
66+
<dependency>
67+
<groupId>com.google.api</groupId>
68+
<artifactId>gax-grpc</artifactId>
69+
</dependency>
5370
<dependency>
5471
<groupId>com.google.guava</groupId>
5572
<artifactId>guava</artifactId>
@@ -90,6 +107,13 @@
90107
<type>test-jar</type>
91108
<scope>test</scope>
92109
</dependency>
110+
<!-- Need testing utility classes for generated gRPC clients tests -->
111+
<dependency>
112+
<groupId>com.google.api</groupId>
113+
<artifactId>gax-grpc</artifactId>
114+
<classifier>testlib</classifier>
115+
<scope>test</scope>
116+
</dependency>
93117
<dependency>
94118
<groupId>junit</groupId>
95119
<artifactId>junit</artifactId>

0 commit comments

Comments
 (0)