2025-04-09 23:08:24 +08:00
|
|
|
<?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>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-module-iot-net-components</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>yudao-module-iot-net-component-server</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
<description>
|
|
|
|
IoT 网络组件的独立运行服务,用于聚合和启动多个网络组件实例。
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- Web 相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Net Component EMQX -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-module-iot-net-component-emqx</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2025-05-30 20:47:01 +08:00
|
|
|
|
2025-04-09 23:08:24 +08:00
|
|
|
|
2025-06-01 07:48:30 +08:00
|
|
|
</dependencies>
|
2025-04-09 23:08:24 +08:00
|
|
|
|
2025-05-30 20:47:01 +08:00
|
|
|
</project>
|