26 lines
954 B
XML
26 lines
954 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>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>yudao-module-iot-net-components</artifactId>
|
||
|
<packaging>pom</packaging>
|
||
|
|
||
|
<name>${project.artifactId}</name>
|
||
|
<description>
|
||
|
物联网网络组件模块,提供与物联网设备通讯、管理的网络组件实现
|
||
|
</description>
|
||
|
|
||
|
<modules>
|
||
|
<module>yudao-module-iot-net-component-core</module>
|
||
|
<module>yudao-module-iot-net-component-http</module>
|
||
|
<module>yudao-module-iot-net-component-emqx</module>
|
||
|
</modules>
|
||
|
|
||
|
</project>
|