xref: /aosp_15_r20/external/google-cloud-java/java-compute/google-cloud-compute/pom.xml (revision 55e87721aa1bc457b326496a7ca40f3ea1a63287)
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-compute</artifactId>
6  <version>1.27.0</version><!-- {x-version-update:google-cloud-compute:current} -->
7  <packaging>jar</packaging>
8  <name>Google Compute Engine</name>
9  <description>Compute Engine delivers configurable virtual machines running in
10    Google's data centers with access to high-performance.
11  </description>
12  <parent>
13    <groupId>com.google.cloud</groupId>
14    <artifactId>google-cloud-compute-parent</artifactId>
15    <version>1.27.0</version><!-- {x-version-update:google-cloud-compute:current} -->
16  </parent>
17  <properties>
18    <site.installationModule>google-cloud-compute</site.installationModule>
19  </properties>
20  <dependencies>
21    <dependency>
22      <groupId>com.google.api</groupId>
23      <artifactId>api-common</artifactId>
24    </dependency>
25    <dependency>
26      <groupId>com.google.api.grpc</groupId>
27      <artifactId>proto-google-cloud-compute-v1</artifactId>
28    </dependency>
29    <dependency>
30      <groupId>com.google.guava</groupId>
31      <artifactId>guava</artifactId>
32    </dependency>
33    <dependency>
34      <groupId>com.google.api</groupId>
35      <artifactId>gax</artifactId>
36    </dependency>
37
38    <!-- gax-grpc brings in Protobuf reflection configurations which are needed
39    for native image compilation. -->
40    <dependency>
41      <groupId>com.google.api</groupId>
42      <artifactId>gax-grpc</artifactId>
43    </dependency>
44
45    <dependency>
46      <groupId>com.google.api</groupId>
47      <artifactId>gax-httpjson</artifactId>
48    </dependency>
49    <dependency>
50      <groupId>org.threeten</groupId>
51      <artifactId>threetenbp</artifactId>
52    </dependency>
53    <dependency>
54      <groupId>com.google.api.grpc</groupId>
55      <artifactId>proto-google-common-protos</artifactId>
56    </dependency>
57    <dependency>
58      <groupId>com.google.protobuf</groupId>
59      <artifactId>protobuf-java</artifactId>
60    </dependency>
61
62    <!-- Test dependencies -->
63    <dependency>
64      <groupId>junit</groupId>
65      <artifactId>junit</artifactId>
66      <scope>test</scope>
67    </dependency>
68    <dependency>
69      <groupId>com.google.cloud</groupId>
70      <artifactId>google-cloud-core</artifactId>
71      <scope>test</scope>
72    </dependency>
73
74    <!-- Need testing utility classes for generated REST clients tests -->
75    <dependency>
76      <groupId>com.google.api</groupId>
77      <artifactId>gax-httpjson</artifactId>
78      <classifier>testlib</classifier>
79      <scope>test</scope>
80    </dependency>
81    <dependency>
82      <groupId>com.google.api</groupId>
83      <artifactId>gax</artifactId>
84      <classifier>testlib</classifier>
85      <scope>test</scope>
86    </dependency>
87  </dependencies>
88</project>
89