|
174 | 174 | <gson.version>2.10.1</gson.version> |
175 | 175 | </properties> |
176 | 176 |
|
177 | | - <dependencyManagement> |
178 | | - <dependencies> |
179 | | - <dependency> |
180 | | - <groupId>com.google.cloud</groupId> |
181 | | - <artifactId>google-cloud-core</artifactId> |
182 | | - <version>${project.version}</version> |
183 | | - </dependency> |
184 | | - |
185 | | - <dependency> |
186 | | - <groupId>com.google.auth</groupId> |
187 | | - <artifactId>google-auth-library-bom</artifactId> |
188 | | - <version>${google.auth.version}</version> |
189 | | - <type>pom</type> |
190 | | - <scope>import</scope> |
191 | | - </dependency> |
192 | | - <dependency> |
193 | | - <groupId>com.google.api</groupId> |
194 | | - <artifactId>gax-bom</artifactId> |
195 | | - <version>${gax.version}</version> |
196 | | - <type>pom</type> |
197 | | - <scope>import</scope> |
198 | | - </dependency> |
199 | | - <dependency> |
200 | | - <groupId>com.google.http-client</groupId> |
201 | | - <artifactId>google-http-client-bom</artifactId> |
202 | | - <version>${google.http.version}</version> |
203 | | - <type>pom</type> |
204 | | - <scope>import</scope> |
205 | | - </dependency> |
206 | | - <dependency> |
207 | | - <groupId>com.google.api-client</groupId> |
208 | | - <artifactId>google-api-client-bom</artifactId> |
209 | | - <version>${google.api.version}</version> |
210 | | - <type>pom</type> |
211 | | - <scope>import</scope> |
212 | | - </dependency> |
213 | | - <dependency> |
214 | | - <groupId>io.grpc</groupId> |
215 | | - <artifactId>grpc-bom</artifactId> |
216 | | - <version>${grpc.version}</version> |
217 | | - <type>pom</type> |
218 | | - <scope>import</scope> |
219 | | - </dependency> |
220 | | - <dependency> |
221 | | - <groupId>com.google.protobuf</groupId> |
222 | | - <artifactId>protobuf-bom</artifactId> |
223 | | - <version>${protobuf.version}</version> |
224 | | - <type>pom</type> |
225 | | - <scope>import</scope> |
226 | | - </dependency> |
227 | | - <dependency> |
228 | | - <groupId>com.google.guava</groupId> |
229 | | - <artifactId>guava-bom</artifactId> |
230 | | - <version>${guava.version}</version> |
231 | | - <type>pom</type> |
232 | | - <scope>import</scope> |
233 | | - </dependency> |
234 | | - <dependency> |
235 | | - <groupId>com.google.api</groupId> |
236 | | - <artifactId>api-common</artifactId> |
237 | | - <version>${google.api-common.version}</version> |
238 | | - </dependency> |
239 | | - <dependency> |
240 | | - <groupId>com.google.api.grpc</groupId> |
241 | | - <artifactId>proto-google-common-protos</artifactId> |
242 | | - <version>${google.common-protos.version}</version> |
243 | | - </dependency> |
244 | | - <dependency> |
245 | | - <groupId>com.google.api.grpc</groupId> |
246 | | - <artifactId>proto-google-iam-v1</artifactId> |
247 | | - <version>${google.iam.version}</version> |
248 | | - </dependency> |
249 | | - <!-- TODO(chingor): use bom when opencensus publishes one --> |
250 | | - <dependency> |
251 | | - <groupId>io.opencensus</groupId> |
252 | | - <artifactId>opencensus-api</artifactId> |
253 | | - <version>${opencensus.version}</version> |
254 | | - </dependency> |
255 | | - <dependency> |
256 | | - <groupId>io.opencensus</groupId> |
257 | | - <artifactId>opencensus-contrib-http-util</artifactId> |
258 | | - <version>${opencensus.version}</version> |
259 | | - </dependency> |
260 | | - |
261 | | - <dependency> |
262 | | - <groupId>javax.annotation</groupId> |
263 | | - <artifactId>javax.annotation-api</artifactId> |
264 | | - <version>${annotations-api.version}</version> |
265 | | - </dependency> |
266 | | - <dependency> |
267 | | - <groupId>com.google.code.findbugs</groupId> |
268 | | - <artifactId>jsr305</artifactId> |
269 | | - <version>${findbugs.version}</version> |
270 | | - </dependency> |
271 | | - <dependency> |
272 | | - <groupId>org.threeten</groupId> |
273 | | - <artifactId>threetenbp</artifactId> |
274 | | - <version>${threetenbp.version}</version> |
275 | | - </dependency> |
276 | | - <dependency> |
277 | | - <groupId>com.google.errorprone</groupId> |
278 | | - <artifactId>error_prone_annotations</artifactId> |
279 | | - <version>${errorprone.version}</version> |
280 | | - </dependency> |
281 | | - <dependency> |
282 | | - <groupId>com.google.code.gson</groupId> |
283 | | - <artifactId>gson</artifactId> |
284 | | - <version>${gson.version}</version> |
285 | | - </dependency> |
286 | | - |
287 | | - <!-- Begin test dependencies --> |
288 | | - <dependency> |
289 | | - <groupId>com.google.truth</groupId> |
290 | | - <artifactId>truth</artifactId> |
291 | | - <version>${truth.version}</version> |
292 | | - <scope>test</scope> |
293 | | - <exclusions> |
294 | | - <exclusion> |
295 | | - <groupId>org.checkerframework</groupId> |
296 | | - <artifactId>checker-qual</artifactId> |
297 | | - </exclusion> |
298 | | - </exclusions> |
299 | | - </dependency> |
300 | | - <dependency> |
301 | | - <groupId>junit</groupId> |
302 | | - <artifactId>junit</artifactId> |
303 | | - <version>${junit.version}</version> |
304 | | - <scope>test</scope> |
305 | | - </dependency> |
306 | | - <dependency> |
307 | | - <groupId>org.easymock</groupId> |
308 | | - <artifactId>easymock</artifactId> |
309 | | - <version>${easymock.version}</version> |
310 | | - <scope>test</scope> |
311 | | - </dependency> |
312 | | - <dependency> |
313 | | - <groupId>org.objenesis</groupId> |
314 | | - <artifactId>objenesis</artifactId> |
315 | | - <version>${objenesis.version}</version> |
316 | | - <scope>test</scope> |
317 | | - </dependency> |
318 | | - </dependencies> |
319 | | - </dependencyManagement> |
320 | | - |
321 | 177 | <modules> |
322 | 178 | <module>google-cloud-core</module> |
323 | 179 | <module>google-cloud-core-http</module> |
|
0 commit comments