1<?xml version="1.0"?> 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-core-http</artifactId> 6 <version>2.17.0</version><!-- {x-version-update:google-cloud-core:current} --> 7 <packaging>jar</packaging> 8 <name>Google Cloud Core HTTP</name> 9 <description> 10 Core http module for the google-cloud. 11 </description> 12 <parent> 13 <groupId>com.google.cloud</groupId> 14 <artifactId>google-cloud-core-parent</artifactId> 15 <version>2.17.0</version><!-- {x-version-update:google-cloud-core:current} --> 16 </parent> 17 <properties> 18 <site.installationModule>google-cloud-core-http</site.installationModule> 19 </properties> 20 <dependencies> 21 <dependency> 22 <groupId>com.google.cloud</groupId> 23 <artifactId>google-cloud-core</artifactId> 24 </dependency> 25 <dependency> 26 <groupId>com.google.auth</groupId> 27 <artifactId>google-auth-library-credentials</artifactId> 28 </dependency> 29 <dependency> 30 <groupId>com.google.auth</groupId> 31 <artifactId>google-auth-library-oauth2-http</artifactId> 32 </dependency> 33 <dependency> 34 <groupId>com.google.http-client</groupId> 35 <artifactId>google-http-client</artifactId> 36 </dependency> 37 <dependency> 38 <groupId>com.google.guava</groupId> 39 <artifactId>guava</artifactId> 40 </dependency> 41 <dependency> 42 <groupId>com.google.api-client</groupId> 43 <artifactId>google-api-client</artifactId> 44 </dependency> 45 <dependency> 46 <groupId>com.google.http-client</groupId> 47 <artifactId>google-http-client-appengine</artifactId> 48 </dependency> 49 <dependency> 50 <groupId>com.google.api</groupId> 51 <artifactId>gax</artifactId> 52 </dependency> 53 <dependency> 54 <groupId>com.google.api</groupId> 55 <artifactId>gax-httpjson</artifactId> 56 </dependency> 57 <dependency> 58 <groupId>com.google.code.findbugs</groupId> 59 <artifactId>jsr305</artifactId> 60 </dependency> 61 <dependency> 62 <groupId>io.opencensus</groupId> 63 <artifactId>opencensus-api</artifactId> 64 </dependency> 65 <dependency> 66 <groupId>io.opencensus</groupId> 67 <artifactId>opencensus-contrib-http-util</artifactId> 68 </dependency> 69 <dependency> 70 <groupId>com.google.api</groupId> 71 <artifactId>api-common</artifactId> 72 </dependency> 73 74 <!-- Test dependencies --> 75 <dependency> 76 <groupId>junit</groupId> 77 <artifactId>junit</artifactId> 78 <scope>test</scope> 79 </dependency> 80 <dependency> 81 <groupId>org.easymock</groupId> 82 <artifactId>easymock</artifactId> 83 <scope>test</scope> 84 </dependency> 85 <dependency> 86 <groupId>com.google.truth</groupId> 87 <artifactId>truth</artifactId> 88 <scope>test</scope> 89 </dependency> 90 </dependencies> 91</project> 92