hono-adapter-coap-vertx-quarkus
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.hono</groupId> <artifactId>hono-adapter-coap-vertx-quarkus</artifactId> <version>1.12.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2021 Contributors to the Eclipse Foundation See the NOTICE file(s) distributed with this work for additional information regarding copyright ownership. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which is available at http://www.eclipse.org/legal/epl-2.0 SPDX-License-Identifier: EPL-2.0 --> <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-adapters-quarkus</artifactId> <relativePath>../base-quarkus</relativePath> <version>1.12.3</version> </parent> <artifactId>hono-adapter-coap-vertx-quarkus</artifactId> <name>Hono CoAP Adapter (Quarkus)</name> <description>A Quarkus based protocol adapter exposing Hono's Telemetry & Event APIs via CoAP.</description> <url>https://www.eclipse.org/hono</url> <dependencies> <dependency> <groupId>org.eclipse.hono</groupId> <artifactId>hono-adapter-coap-vertx-base</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> <configuration> <images> <image> <build> <ports> <port>5683/udp</port> <port>5684/udp</port> <port>${vertx.health.port}</port> </ports> </build> </image> </images> </configuration> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>build-docker-image</id> <build> <plugins> <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> <profile> <id>build-native-image</id> <build> <plugins> <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> </project>