1<?xml version="1.0" encoding="UTF-8"?> 2<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 3 <modelVersion>4.0.0</modelVersion> 4 <groupId>com.google.api</groupId> 5 <artifactId>gax-bom</artifactId> 6 <version>2.27.0</version><!-- {x-version-update:gax:current} --> 7 <packaging>pom</packaging> 8 <name>GAX (Google Api eXtensions) for Java (BOM)</name> 9 <description>Google Api eXtensions for Java (BOM)</description> 10 11 <parent> 12 <groupId>com.google.cloud</groupId> 13 <artifactId>google-cloud-shared-config</artifactId> 14 <version>1.5.5</version> 15 <relativePath/> 16 </parent> 17 18 <developers> 19 <developer> 20 <id>GoogleAPIs</id> 21 <name>GoogleAPIs</name> 22 <email>[email protected]</email> 23 <url>https://github.com/googleapis/gax-java</url> 24 <organization>Google, LLC</organization> 25 <organizationUrl>https://www.google.com</organizationUrl> 26 </developer> 27 </developers> 28 29 <scm> 30 <connection>scm:git:https://github.com/googleapis/gax-java.git</connection> 31 <url>https://github.com/googleapis/gax-java</url> 32 </scm> 33 34 <licenses> 35 <license> 36 <name>BSD-3-Clause</name> 37 <url>https://github.com/googleapis/gax-java/blob/master/LICENSE</url> 38 </license> 39 </licenses> 40 41 <dependencyManagement> 42 <dependencies> 43 <dependency> 44 <groupId>com.google.api</groupId> 45 <artifactId>gax</artifactId> 46 <version>2.27.0</version><!-- {x-version-update:gax:current} --> 47 </dependency> 48 <dependency> 49 <groupId>com.google.api</groupId> 50 <artifactId>gax</artifactId> 51 <version>2.27.0</version><!-- {x-version-update:gax:current} --> 52 <type>test-jar</type> 53 <classifier>testlib</classifier> 54 </dependency> 55 <dependency> 56 <groupId>com.google.api</groupId> 57 <artifactId>gax</artifactId> 58 <version>2.27.0</version><!-- {x-version-update:gax:current} --> 59 <classifier>testlib</classifier> 60 </dependency> 61 <dependency> 62 <groupId>com.google.api</groupId> 63 <artifactId>gax-grpc</artifactId> 64 <version>2.27.0</version><!-- {x-version-update:gax-grpc:current} --> 65 </dependency> 66 <dependency> 67 <groupId>com.google.api</groupId> 68 <artifactId>gax-grpc</artifactId> 69 <version>2.27.0</version><!-- {x-version-update:gax-grpc:current} --> 70 <type>test-jar</type> 71 <classifier>testlib</classifier> 72 </dependency> 73 <dependency> 74 <groupId>com.google.api</groupId> 75 <artifactId>gax-grpc</artifactId> 76 <version>2.27.0</version><!-- {x-version-update:gax-grpc:current} --> 77 <classifier>testlib</classifier> 78 </dependency> 79 <dependency> 80 <groupId>com.google.api</groupId> 81 <artifactId>gax-httpjson</artifactId> 82 <version>0.112.0</version><!-- {x-version-update:gax-httpjson:current} --> 83 </dependency> 84 <dependency> 85 <groupId>com.google.api</groupId> 86 <artifactId>gax-httpjson</artifactId> 87 <version>0.112.0</version><!-- {x-version-update:gax-httpjson:current} --> 88 <type>test-jar</type> 89 <classifier>testlib</classifier> 90 </dependency> 91 <dependency> 92 <groupId>com.google.api</groupId> 93 <artifactId>gax-httpjson</artifactId> 94 <version>0.112.0</version><!-- {x-version-update:gax-httpjson:current} --> 95 <classifier>testlib</classifier> 96 </dependency> 97 </dependencies> 98 </dependencyManagement> 99 100 <build> 101 <plugins> 102 <plugin> 103 <groupId>org.apache.maven.plugins</groupId> 104 <artifactId>maven-checkstyle-plugin</artifactId> 105 <configuration> 106 <skip>true</skip> 107 </configuration> 108 </plugin> 109 <plugin> 110 <groupId>org.apache.maven.plugins</groupId> 111 <artifactId>maven-jar-plugin</artifactId> 112 <executions> 113 <execution> 114 <goals> 115 <goal>test-jar</goal> 116 </goals> 117 <configuration> 118 <skip>true</skip> 119 </configuration> 120 </execution> 121 </executions> 122 </plugin> 123 </plugins> 124 </build> 125</project> 126