1<?xml version='1.0' encoding='UTF-8'?> 2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 3 <modelVersion>4.0.0</modelVersion> 4 <groupId>com.google.protobuf.test</groupId> 5 <artifactId>linkage-monitor-check-bom</artifactId> 6 <packaging>pom</packaging> 7 <version>0.0.1-SNAPSHOT</version><!-- we don't release this BOM --> 8 <name>Protobuf linkage monitor validation BOM</name> 9 <description> 10 A BOM to use in Linkage Monitor. This lists artifacts that use 11 Protobuf runtime libraries, such as gRPC and Google Cloud 12 client libraries. 13 We do not publish this pom.xml to Maven Central. 14 </description> 15 <properties> 16 <!-- 17 This version is ok to kept old. Linkage Monitor overrides this 18 version when checking linakage errors 19 --> 20 <protobuf.version>3.23.2</protobuf.version> 21 </properties> 22 <dependencyManagement> 23 <dependencies> 24 <dependency> 25 <groupId>com.google.protobuf</groupId> 26 <artifactId>protobuf-bom</artifactId> 27 <version>${protobuf.version}</version> 28 <type>pom</type> 29 <scope>import</scope> 30 </dependency> 31 <dependency> 32 <groupId>io.grpc</groupId> 33 <artifactId>grpc-bom</artifactId> 34 <version>1.55.3</version> 35 <type>pom</type> 36 <scope>import</scope> 37 </dependency> 38 <dependency> 39 <groupId>com.google.api.grpc</groupId> 40 <artifactId>grpc-google-common-protos</artifactId> 41 <version>2.22.0</version> 42 </dependency> 43 <dependency> 44 <groupId>com.google.api.grpc</groupId> 45 <artifactId>proto-google-common-protos</artifactId> 46 <version>2.22.0</version> 47 </dependency> 48 <dependency> 49 <groupId>com.google.api.grpc</groupId> 50 <artifactId>proto-google-iam-v1</artifactId> 51 <version>1.17.0</version> 52 </dependency> 53 <dependency> 54 <groupId>com.google.api.grpc</groupId> 55 <artifactId>proto-google-iam-v2</artifactId> 56 <version>1.17.0</version> 57 </dependency> 58 <dependency> 59 <groupId>com.google.api.grpc</groupId> 60 <artifactId>proto-google-iam-v2beta</artifactId> 61 <version>1.17.0</version> 62 </dependency> 63 <dependency> 64 <groupId>com.google.cloud</groupId> 65 <artifactId>google-cloud-bigquery</artifactId> 66 <version>2.29.0</version> 67 </dependency> 68 <dependency> 69 <groupId>com.google.cloud</groupId> 70 <artifactId>google-cloud-bigtable</artifactId> 71 <version>2.24.1</version> 72 </dependency> 73 </dependencies> 74 </dependencyManagement> 75</project> 76