xref: /aosp_15_r20/external/google-cloud-java/java-notification/pom.xml (revision 55e87721aa1bc457b326496a7ca40f3ea1a63287)
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>com.google.cloud</groupId>
7  <artifactId>google-cloud-notification</artifactId>
8  <version>0.135.0-beta</version><!-- {x-version-update:google-cloud-notification:current} -->
9  <packaging>jar</packaging>
10  <name>Google Cloud Pub/Sub Notifications for GCS</name>
11  <description>
12    Java idiomatic client for Google Cloud Notification for GCS.
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>google-cloud-notification</site.installationModule>
23  </properties>
24  <dependencyManagement>
25    <dependencies>
26    </dependencies>
27  </dependencyManagement>
28  <dependencies>
29    <dependency>
30      <groupId>com.google.cloud</groupId>
31      <artifactId>google-cloud-storage</artifactId>
32    </dependency>
33    <dependency>
34      <groupId>com.google.api.grpc</groupId>
35      <artifactId>proto-google-cloud-pubsub-v1</artifactId>
36    </dependency>
37    <dependency>
38      <groupId>com.google.api.grpc</groupId>
39      <artifactId>proto-google-iam-v1</artifactId>
40    </dependency>
41    <dependency>
42      <groupId>com.google.apis</groupId>
43      <artifactId>google-api-services-storage</artifactId>
44    </dependency>
45    <dependency>
46      <groupId>com.google.api</groupId>
47      <artifactId>api-common</artifactId>
48    </dependency>
49    <dependency>
50      <groupId>com.google.cloud</groupId>
51      <artifactId>google-cloud-core</artifactId>
52    </dependency>
53    <dependency>
54      <groupId>com.google.guava</groupId>
55      <artifactId>guava</artifactId>
56    </dependency>
57
58    <!--  Test dependencies  -->
59    <dependency>
60      <groupId>junit</groupId>
61      <artifactId>junit</artifactId>
62      <scope>test</scope>
63    </dependency>
64    <dependency>
65      <groupId>com.google.cloud</groupId>
66      <artifactId>google-cloud-pubsub</artifactId>
67      <scope>test</scope>
68    </dependency>
69  </dependencies>
70</project>
71