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.cloud</groupId> 5 <artifactId>google-cloud-dms</artifactId> 6 <version>2.16.0</version><!-- {x-version-update:google-cloud-dms:current} --> 7 <packaging>jar</packaging> 8 <name>Google Database Migration Service</name> 9 <description>Database Migration Service makes it easier for you to migrate your data to Google Cloud. This service helps you lift and shift your MySQL and PostgreSQL workloads into Cloud SQL.</description> 10 <parent> 11 <groupId>com.google.cloud</groupId> 12 <artifactId>google-cloud-dms-parent</artifactId> 13 <version>2.16.0</version><!-- {x-version-update:google-cloud-dms:current} --> 14 </parent> 15 <properties> 16 <site.installationModule>google-cloud-dms</site.installationModule> 17 </properties> 18 <dependencies> 19 <dependency> 20 <groupId>com.google.api.grpc</groupId> 21 <artifactId>grpc-google-cloud-dms-v1</artifactId> 22 <scope>test</scope> 23 </dependency> 24 <dependency> 25 <groupId>io.grpc</groupId> 26 <artifactId>grpc-api</artifactId> 27 </dependency> 28 <dependency> 29 <groupId>io.grpc</groupId> 30 <artifactId>grpc-stub</artifactId> 31 </dependency> 32 <dependency> 33 <groupId>io.grpc</groupId> 34 <artifactId>grpc-protobuf</artifactId> 35 </dependency> 36 <dependency> 37 <groupId>com.google.api</groupId> 38 <artifactId>api-common</artifactId> 39 </dependency> 40 <dependency> 41 <groupId>com.google.protobuf</groupId> 42 <artifactId>protobuf-java</artifactId> 43 </dependency> 44 <dependency> 45 <groupId>com.google.api.grpc</groupId> 46 <artifactId>proto-google-common-protos</artifactId> 47 </dependency> 48 49 <dependency> 50 <groupId>com.google.api.grpc</groupId> 51 <artifactId>proto-google-cloud-dms-v1</artifactId> 52 </dependency> 53 <dependency> 54 <groupId>com.google.guava</groupId> 55 <artifactId>guava</artifactId> 56 </dependency> 57 <dependency> 58 <groupId>com.google.api</groupId> 59 <artifactId>gax</artifactId> 60 </dependency> 61 <dependency> 62 <groupId>com.google.api</groupId> 63 <artifactId>gax-grpc</artifactId> 64 </dependency> 65 <dependency> 66 <groupId>org.threeten</groupId> 67 <artifactId>threetenbp</artifactId> 68 </dependency> 69 70 <!-- Test dependencies --> 71 <dependency> 72 <groupId>junit</groupId> 73 <artifactId>junit</artifactId> 74 <scope>test</scope> 75 </dependency> 76 77 <!-- Need testing utility classes for generated gRPC clients tests --> 78 <dependency> 79 <groupId>com.google.api</groupId> 80 <artifactId>gax-grpc</artifactId> 81 <classifier>testlib</classifier> 82 <scope>test</scope> 83 </dependency> 84 </dependencies> 85</project> 86