Skip to content

Commit ba54553

Browse files
matthew29tangcopybara-github
authored andcommitted
chore: Fix corrupted pom file
PiperOrigin-RevId: 888337581
1 parent 0c2fbc2 commit ba54553

2 files changed

Lines changed: 153 additions & 2 deletions

File tree

google-cloud-vertexai/pom.xml

Lines changed: 147 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,150 @@
3030
<properties>
3131
<site.installationModule>google-cloud-vertexai</site.installationModule>
3232
</properties>
33-
<dependencies>
33+
<dependencies>
34+
<dependency>
35+
<groupId>io.grpc</groupId>
36+
<artifactId>grpc-api</artifactId>
37+
</dependency>
38+
<dependency>
39+
<groupId>io.grpc</groupId>
40+
<artifactId>grpc-stub</artifactId>
41+
</dependency>
42+
<dependency>
43+
<groupId>io.grpc</groupId>
44+
<artifactId>grpc-protobuf</artifactId>
45+
</dependency>
46+
<dependency>
47+
<groupId>com.google.api</groupId>
48+
<artifactId>api-common</artifactId>
49+
</dependency>
50+
<dependency>
51+
<groupId>com.google.protobuf</groupId>
52+
<artifactId>protobuf-java</artifactId>
53+
</dependency>
54+
<dependency>
55+
<groupId>com.google.api.grpc</groupId>
56+
<artifactId>proto-google-common-protos</artifactId>
57+
</dependency>
58+
59+
<dependency>
60+
<groupId>com.google.api.grpc</groupId>
61+
<artifactId>proto-google-cloud-vertexai-v1</artifactId>
62+
</dependency>
63+
<dependency>
64+
<groupId>com.google.guava</groupId>
65+
<artifactId>guava</artifactId>
66+
</dependency>
67+
<dependency>
68+
<groupId>com.google.api</groupId>
69+
<artifactId>gax</artifactId>
70+
</dependency>
71+
<dependency>
72+
<groupId>com.google.api</groupId>
73+
<artifactId>gax-grpc</artifactId>
74+
</dependency>
75+
<dependency>
76+
<groupId>com.google.api</groupId>
77+
<artifactId>gax-httpjson</artifactId>
78+
</dependency>
79+
<dependency>
80+
<groupId>com.google.api.grpc</groupId>
81+
<artifactId>grpc-google-common-protos</artifactId>
82+
</dependency>
83+
<dependency>
84+
<groupId>com.google.api.grpc</groupId>
85+
<artifactId>proto-google-iam-v1</artifactId>
86+
</dependency>
87+
<dependency>
88+
<groupId>com.google.api.grpc</groupId>
89+
<artifactId>grpc-google-iam-v1</artifactId>
90+
</dependency>
91+
<dependency>
92+
<groupId>org.threeten</groupId>
93+
<artifactId>threetenbp</artifactId>
94+
</dependency>
95+
<dependency>
96+
<groupId>com.google.genai</groupId>
97+
<artifactId>google-genai</artifactId>
98+
<version>1.41.0</version>
99+
</dependency>
100+
<dependency>
101+
<groupId>com.google.auto.value</groupId>
102+
<artifactId>auto-value-annotations</artifactId>
103+
<version>1.11.0</version>
104+
</dependency>
105+
<dependency>
106+
<groupId>com.google.auto.value</groupId>
107+
<artifactId>auto-value</artifactId>
108+
<version>1.11.0</version>
109+
<scope>provided</scope>
110+
</dependency>
111+
112+
<!-- Test dependencies -->
113+
<dependency>
114+
<groupId>junit</groupId>
115+
<artifactId>junit</artifactId>
116+
<scope>test</scope>
117+
</dependency>
118+
<dependency>
119+
<groupId>org.mockito</groupId>
120+
<artifactId>mockito-core</artifactId>
121+
<scope>test</scope>
122+
</dependency>
123+
<dependency>
124+
<groupId>org.mockito</groupId>
125+
<artifactId>mockito-inline</artifactId>
126+
<scope>test</scope>
127+
</dependency>
128+
<dependency>
129+
<groupId>com.google.truth</groupId>
130+
<artifactId>truth</artifactId>
131+
<scope>test</scope>
132+
</dependency>
133+
134+
<!-- GenAI Extensions test dependencies -->
135+
<dependency>
136+
<groupId>org.junit.jupiter</groupId>
137+
<artifactId>junit-jupiter-api</artifactId>
138+
<version>5.11.4</version>
139+
<scope>test</scope>
140+
</dependency>
141+
<dependency>
142+
<groupId>org.junit.jupiter</groupId>
143+
<artifactId>junit-jupiter-params</artifactId>
144+
<version>5.11.4</version>
145+
<scope>test</scope>
146+
</dependency>
147+
<dependency>
148+
<groupId>org.junit.jupiter</groupId>
149+
<artifactId>junit-jupiter-engine</artifactId>
150+
<version>5.11.4</version>
151+
<scope>test</scope>
152+
</dependency>
153+
154+
<dependency>
155+
<groupId>com.google.api.grpc</groupId>
156+
<artifactId>grpc-google-cloud-vertexai-v1</artifactId>
157+
<scope>test</scope>
158+
</dependency>
159+
<!-- Need testing utility classes for generated gRPC clients tests -->
160+
<dependency>
161+
<groupId>com.google.api</groupId>
162+
<artifactId>gax</artifactId>
163+
<classifier>testlib</classifier>
164+
<scope>test</scope>
165+
</dependency>
166+
<dependency>
167+
<groupId>com.google.api</groupId>
168+
<artifactId>gax-grpc</artifactId>
169+
<classifier>testlib</classifier>
170+
<scope>test</scope>
171+
</dependency>
172+
<dependency>
173+
<groupId>com.google.api</groupId>
174+
<artifactId>gax-httpjson</artifactId>
175+
<classifier>testlib</classifier>
176+
<scope>test</scope>
177+
</dependency>
178+
</dependencies>
179+
</project>

pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,9 @@
4343
</dependencies>
4444
</dependencyManagement>
4545

46-
<modules>
46+
<modules>
47+
<module>google-cloud-vertexai</module>
48+
<module>grpc-google-cloud-vertexai-v1</module>
49+
<module>proto-google-cloud-vertexai-v1</module>
50+
</modules>
51+
</project>

0 commit comments

Comments
 (0)