xref: /aosp_15_r20/external/sdk-platform-java/gax-java/gax-httpjson/pom.xml (revision 882aa7c72c3cd3b66e72a261bdd69b93f7de7670)
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
5  <artifactId>gax-httpjson</artifactId>
6  <version>0.112.0</version> <!-- {x-version-update:gax-httpjson:current} -->
7  <packaging>jar</packaging>
8  <name>GAX (Google Api eXtensions) for Java (HTTP JSON)</name>
9  <description>Google Api eXtensions for Java (HTTP JSON)</description>
10
11  <parent>
12    <groupId>com.google.api</groupId>
13    <artifactId>gax-parent</artifactId>
14    <version>2.27.0</version><!-- {x-version-update:gax:current} -->
15  </parent>
16
17  <properties>
18    <!-- Skip breaking changes checking against previous version while gax-httpjson is not GA -->
19    <clirr.skip>true</clirr.skip>
20  </properties>
21
22  <dependencies>
23    <dependency>
24      <groupId>com.google.api</groupId>
25      <artifactId>gax</artifactId>
26    </dependency>
27    <dependency>
28      <groupId>com.google.api</groupId>
29      <artifactId>api-common</artifactId>
30    </dependency>
31    <dependency>
32      <groupId>com.google.api.grpc</groupId>
33      <artifactId>proto-google-common-protos</artifactId>
34    </dependency>
35    <dependency>
36      <groupId>com.google.auth</groupId>
37      <artifactId>google-auth-library-credentials</artifactId>
38    </dependency>
39    <dependency>
40      <groupId>com.google.code.gson</groupId>
41      <artifactId>gson</artifactId>
42    </dependency>
43    <dependency>
44      <groupId>com.google.guava</groupId>
45      <artifactId>guava</artifactId>
46    </dependency>
47    <dependency>
48      <groupId>com.google.http-client</groupId>
49      <artifactId>google-http-client</artifactId>
50    </dependency>
51    <dependency>
52      <groupId>com.google.protobuf</groupId>
53      <artifactId>protobuf-java</artifactId>
54    </dependency>
55    <dependency>
56      <groupId>org.threeten</groupId>
57      <artifactId>threetenbp</artifactId>
58    </dependency>
59    <dependency>
60      <groupId>com.google.auth</groupId>
61      <artifactId>google-auth-library-oauth2-http</artifactId>
62    </dependency>
63    <dependency>
64      <groupId>com.google.http-client</groupId>
65      <artifactId>google-http-client-gson</artifactId>
66    </dependency>
67    <dependency>
68      <groupId>com.google.protobuf</groupId>
69      <artifactId>protobuf-java-util</artifactId>
70    </dependency>
71    <dependency>
72      <groupId>com.google.code.findbugs</groupId>
73      <artifactId>jsr305</artifactId>
74      <scope>provided</scope>
75    </dependency>
76    <dependency>
77      <groupId>com.google.auto.value</groupId>
78      <artifactId>auto-value-annotations</artifactId>
79      <scope>provided</scope>
80    </dependency>
81
82    <!-- test dependencies -->
83    <dependency>
84      <groupId>com.google.api</groupId>
85      <artifactId>gax</artifactId>
86      <type>test-jar</type>
87      <scope>test</scope>
88      <classifier>testlib</classifier>
89    </dependency>
90  </dependencies>
91
92  <build>
93    <plugins>
94      <plugin>
95        <groupId>org.apache.maven.plugins</groupId>
96        <artifactId>maven-jar-plugin</artifactId>
97        <executions>
98          <execution>
99            <goals>
100              <goal>test-jar</goal>
101            </goals>
102            <configuration>
103              <skip>false</skip>
104              <classifier>testlib</classifier>
105              <includes>
106                <include>com/google/api/gax/httpjson/testing/**</include>
107              </includes>
108            </configuration>
109          </execution>
110        </executions>
111      </plugin>
112    </plugins>
113  </build>
114</project>