os-mqtt-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.clarkstore</groupId> <artifactId>os-mqtt-server</artifactId> <version>0.17.15</version> </dependency>
<?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>com.github.clarkstore</groupId> <artifactId>os-mqtt</artifactId> <version>0.17.15</version> </parent> <artifactId>os-mqtt-server</artifactId> <packaging>jar</packaging> <description>mq服务端模块</description> <dependencies> <dependency> <groupId>com.github.clarkstore</groupId> <artifactId>os-mqtt-common</artifactId> </dependency> <dependency> <groupId>net.dreamlu</groupId> <artifactId>mica-lite</artifactId> </dependency> <dependency> <groupId>net.dreamlu</groupId> <artifactId>mica-openapi</artifactId> </dependency> <dependency> <groupId>net.dreamlu</groupId> <artifactId>mica-mqtt-server-spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- 开启 prometheus 指标收集,详见: http://localhost:30012/actuator/prometheus --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-registry-prometheus</artifactId> </dependency> </dependencies> </project>