forked from eclipse-hono/hono
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[eclipse-hono#3442] Support Google Pub/Sub as messaging infrastructure.
This is the second issue to qualify Hono as a replacement for Google IoT Core customers. As part of this architecture we added a Pub/Sub based client for downstream messages. Added new modules to support Google Pub/Sub as messaging infrastructure. Used Google's TopicAdminClient to create topics. Used Google's Publisher to publish messages to Google Pub/Sub. Added unittests. Signed-off-by: michelle <[email protected]>
- Loading branch information
1 parent
78305e3
commit 21dc422
Showing
32 changed files
with
2,092 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.eclipse.hono</groupId> | ||
<artifactId>hono-clients-parent</artifactId> | ||
<version>2.3.0-SNAPSHOT</version> | ||
</parent> | ||
<artifactId>hono-client-pubsub-common</artifactId> | ||
|
||
<name>Hono Client PubSub Common</name> | ||
<description>Classes required for implementing PubSub based Hono clients</description> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.cloud</groupId> | ||
<artifactId>libraries-bom</artifactId> | ||
<version>26.1.4</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.vertx</groupId> | ||
<artifactId>vertx-core</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.smallrye</groupId> | ||
<artifactId>smallrye-health</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.hono</groupId> | ||
<artifactId>hono-core</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.hono</groupId> | ||
<artifactId>hono-client-common</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.cloud</groupId> | ||
<artifactId>google-cloud-pubsub</artifactId> | ||
</dependency> | ||
|
||
<!-- Testing --> | ||
<dependency> | ||
<groupId>org.eclipse.hono</groupId> | ||
<artifactId>core-test-utils</artifactId> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.opentelemetry</groupId> | ||
<artifactId>opentelemetry-opentracing-shim</artifactId> | ||
</dependency> | ||
</dependencies> | ||
</project> |
Oops, something went wrong.