1<?xml version="1.0" encoding="UTF-8"?> 2<project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 5 <modelVersion>4.0.0</modelVersion> 6 <groupId>com.google.cloud</groupId> 7 <artifactId>first-party-dependencies</artifactId> 8 <packaging>pom</packaging> 9 <version>3.9.0</version><!-- {x-version-update:google-cloud-shared-dependencies:current} --> 10 <name>Google Cloud First-party Shared Dependencies</name> 11 <description> 12 Shared first-party dependencies for Google Cloud Java libraries. 13 </description> 14 15 <parent> 16 <groupId>com.google.cloud</groupId> 17 <artifactId>google-cloud-shared-config</artifactId> 18 <version>1.5.5</version> 19 <relativePath /> 20 </parent> 21 22 <properties> 23 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 24 <site.installationModule>${project.artifactId}</site.installationModule> 25 <grpc-gcp.version>1.4.1</grpc-gcp.version> 26 <gson.version>2.10.1</gson.version> 27 <google.http-client.version>1.43.1</google.http-client.version> 28 <google.oauth-client.version>1.34.1</google.oauth-client.version> 29 <google.api-client.version>2.2.0</google.api-client.version> 30 </properties> 31 32 <dependencyManagement> 33 <dependencies> 34 <dependency> 35 <!-- This BOM declares the versions gRPC, Protobuf, Guava, etc. --> 36 <groupId>com.google.api</groupId> 37 <artifactId>gapic-generator-java-bom</artifactId> 38 <version>2.19.0</version><!-- {x-version-update:gapic-generator-java:current} --> 39 <type>pom</type> 40 <scope>import</scope> 41 </dependency> 42 <dependency> 43 <groupId>com.google.cloud</groupId> 44 <artifactId>grpc-gcp</artifactId> 45 <version>${grpc-gcp.version}</version> 46 </dependency> 47 <dependency> 48 <groupId>com.google.code.gson</groupId> 49 <artifactId>gson</artifactId> 50 <version>${gson.version}</version> 51 </dependency> 52 <dependency> 53 <groupId>com.google.cloud</groupId> 54 <artifactId>google-cloud-core-bom</artifactId> 55 <version>2.17.0</version><!-- {x-version-update:google-cloud-core:current} --> 56 <type>pom</type> 57 <scope>import</scope> 58 </dependency> 59 <dependency> 60 <groupId>com.google.http-client</groupId> 61 <artifactId>google-http-client-bom</artifactId> 62 <version>${google.http-client.version}</version> 63 <type>pom</type> 64 <scope>import</scope> 65 </dependency> 66 <dependency> 67 <groupId>com.google.oauth-client</groupId> 68 <artifactId>google-oauth-client-bom</artifactId> 69 <version>${google.oauth-client.version}</version> 70 <type>pom</type> 71 <scope>import</scope> 72 </dependency> 73 <dependency> 74 <groupId>com.google.api-client</groupId> 75 <artifactId>google-api-client-bom</artifactId> 76 <version>${google.api-client.version}</version> 77 <type>pom</type> 78 <scope>import</scope> 79 </dependency> 80 81 <!-- Following test deps are kept to keep them consistent with versions above --> 82 83 <dependency> 84 <groupId>com.google.cloud</groupId> 85 <artifactId>google-cloud-core</artifactId> 86 <version>2.17.0</version><!-- {x-version-update:google-cloud-core:current} --> 87 <type>test-jar</type> 88 </dependency> 89 <dependency> 90 <groupId>com.google.cloud</groupId> 91 <artifactId>google-cloud-core</artifactId> 92 <version>2.17.0</version><!-- {x-version-update:google-cloud-core:current} --> 93 <classifier>tests</classifier> 94 </dependency> 95 </dependencies> 96 </dependencyManagement> 97</project> 98