2025-05-22 22:23:08 +08:00
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2025-05-24 17:30:32 +08:00
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2025-05-22 22:23:08 +08:00
|
|
|
|
<parent>
|
|
|
|
|
<artifactId>yudao-module-iot</artifactId>
|
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>yudao-module-iot-protocol</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
|
<description>
|
|
|
|
|
物联网协议模块,提供 topic 解析、协议转换等功能
|
2025-05-28 13:22:22 +08:00
|
|
|
|
作为 iot-biz 和 iot-gateway 的共享包
|
2025-05-22 22:23:08 +08:00
|
|
|
|
</description>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!-- 项目内部依赖 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
<artifactId>yudao-common</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Web 相关 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
<artifactId>yudao-spring-boot-starter-web</artifactId>
|
|
|
|
|
<scope>provided</scope> <!-- 设为 provided,只有 biz 需要使用 -->
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 工具类相关 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- IoT 相关依赖 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
|
<artifactId>vertx-core</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
|
<artifactId>vertx-web</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2025-05-23 23:23:49 +08:00
|
|
|
|
|
|
|
|
|
<!-- 测试相关 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2025-05-22 22:23:08 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
2025-05-28 13:22:22 +08:00
|
|
|
|
</project>
|