27 lines
917 B
XML
27 lines
917 B
XML
<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-core</artifactId>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>yudao-module-iot-common</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
<description>
|
|
iot 模块下,提供通用的功能。
|
|
1. 跨 iot-biz 和 iot-gateway 的设备消息
|
|
2. 查询设备信息的通用 API
|
|
</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao-common</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|