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-dns</artifactId> 6 <packaging>jar</packaging> 7 <version>2.15.0</version><!-- {x-version-update:google-cloud-dns:current} --> 8 <name>Google Cloud DNS Parent</name> 9 <description> 10 Java idiomatic client for Google Cloud Platform services. 11 </description> 12 13 <parent> 14 <groupId>com.google.cloud</groupId> 15 <artifactId>google-cloud-jar-parent</artifactId> 16 <version>1.11.0</version><!-- {x-version-update:google-cloud-java:current} --> 17 <relativePath>../google-cloud-jar-parent/pom.xml</relativePath> 18 </parent> 19 20 <properties> 21 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 22 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> 23 <github.global.server>github</github.global.server> 24 <site.installationModule>google-cloud-dns-parent</site.installationModule> 25 </properties> 26 27 <dependencyManagement> 28 <dependencies> 29 </dependencies> 30 </dependencyManagement> 31 32 <dependencies> 33 <dependency> 34 <groupId>com.google.apis</groupId> 35 <artifactId>google-api-services-dns</artifactId> 36 </dependency> 37 <dependency> 38 <groupId>com.google.api-client</groupId> 39 <artifactId>google-api-client</artifactId> 40 </dependency> 41 <dependency> 42 <groupId>com.google.http-client</groupId> 43 <artifactId>google-http-client</artifactId> 44 </dependency> 45 <dependency> 46 <groupId>com.google.http-client</groupId> 47 <artifactId>google-http-client-jackson2</artifactId> 48 </dependency> 49 <dependency> 50 <groupId>com.google.cloud</groupId> 51 <artifactId>google-cloud-core</artifactId> 52 </dependency> 53 <dependency> 54 <groupId>com.google.cloud</groupId> 55 <artifactId>google-cloud-core-http</artifactId> 56 </dependency> 57 <dependency> 58 <groupId>com.google.auth</groupId> 59 <artifactId>google-auth-library-oauth2-http</artifactId> 60 </dependency> 61 <dependency> 62 <groupId>com.google.api</groupId> 63 <artifactId>gax</artifactId> 64 </dependency> 65 <dependency> 66 <groupId>com.google.guava</groupId> 67 <artifactId>guava</artifactId> 68 </dependency> 69 <dependency> 70 <groupId>com.google.api</groupId> 71 <artifactId>api-common</artifactId> 72 </dependency> 73 <dependency> 74 <groupId>org.threeten</groupId> 75 <artifactId>threetenbp</artifactId> 76 </dependency> 77 78 <dependency> 79 <groupId>com.google.cloud</groupId> 80 <artifactId>google-cloud-core</artifactId> 81 <type>test-jar</type> 82 <scope>test</scope> 83 </dependency> 84 <dependency> 85 <groupId>junit</groupId> 86 <artifactId>junit</artifactId> 87 <scope>test</scope> 88 </dependency> 89 <dependency> 90 <groupId>org.easymock</groupId> 91 <artifactId>easymock</artifactId> 92 <scope>test</scope> 93 </dependency> 94 </dependencies> 95</project> 96