1<?xml version="1.0"?> 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>io.grafeas</groupId> 7 <artifactId>grafeas</artifactId> 8 <version>2.18.0</version><!-- {x-version-update:grafeas:current} --> 9 <packaging>jar</packaging> 10 <name>Grafeas Client</name> 11 <description> 12 Java idiomatic client for Grafeas. 13 </description> 14 15 <parent> 16 <groupId>com.google.cloud</groupId> 17 <artifactId>google-cloud-jar-parent</artifactId> 18 <version>1.11.0</version><!-- {x-version-update:google-cloud-java:current} --> 19 <relativePath>../google-cloud-jar-parent/pom.xml</relativePath> 20 </parent> 21 <properties> 22 <site.installationModule>grafeas</site.installationModule> 23 <checkstyle.header.file>grafeas.header</checkstyle.header.file> 24 </properties> 25 26 <dependencyManagement> 27 <dependencies> 28 </dependencies> 29 </dependencyManagement> 30 31 <dependencies> 32 <dependency> 33 <groupId>com.google.api.grpc</groupId> 34 <artifactId>proto-google-common-protos</artifactId> 35 </dependency> 36 <dependency> 37 <groupId>com.google.protobuf</groupId> 38 <artifactId>protobuf-java</artifactId> 39 </dependency> 40 <dependency> 41 <groupId>com.google.api</groupId> 42 <artifactId>gax-grpc</artifactId> 43 </dependency> 44 <dependency> 45 <groupId>com.google.guava</groupId> 46 <artifactId>guava</artifactId> 47 </dependency> 48 <dependency> 49 <groupId>com.google.api</groupId> 50 <artifactId>gax</artifactId> 51 </dependency> 52 <dependency> 53 <groupId>org.threeten</groupId> 54 <artifactId>threetenbp</artifactId> 55 </dependency> 56 <dependency> 57 <groupId>io.grpc</groupId> 58 <artifactId>grpc-api</artifactId> 59 </dependency> 60 <dependency> 61 <groupId>io.grpc</groupId> 62 <artifactId>grpc-protobuf</artifactId> 63 </dependency> 64 <dependency> 65 <groupId>io.grpc</groupId> 66 <artifactId>grpc-stub</artifactId> 67 </dependency> 68 <dependency> 69 <groupId>com.google.api</groupId> 70 <artifactId>api-common</artifactId> 71 </dependency> 72 73 <!-- Test dependencies --> 74 <dependency> 75 <groupId>junit</groupId> 76 <artifactId>junit</artifactId> 77 <scope>test</scope> 78 </dependency> 79 <dependency> 80 <groupId>com.google.api</groupId> 81 <artifactId>gax-grpc</artifactId> 82 <classifier>testlib</classifier> 83 <scope>test</scope> 84 </dependency> 85 </dependencies> 86</project> 87