25 lines
912 B
XML
25 lines
912 B
XML
<?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">
|
|
<parent>
|
|
<artifactId>yudao-module-iot</artifactId>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<modules>
|
|
<module>yudao-module-iot-common</module>
|
|
<module>yudao-module-iot-message-bus</module>
|
|
</modules>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>yudao-module-iot-core</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
<description>
|
|
iot 模块下,提供 iot-biz 和 iot-gateway 模块的核心功能。
|
|
例如说:消息总线、消息协议(编解码)等。
|
|
</description>
|
|
|
|
</project> |