pom.xml 917 B

123456789101112131415161718192021222324252627
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <artifactId>yudao-module-iot-core</artifactId>
  5. <groupId>cn.iocoder.boot</groupId>
  6. <version>${revision}</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>yudao-module-iot-common</artifactId>
  10. <packaging>jar</packaging>
  11. <name>${project.artifactId}</name>
  12. <description>
  13. iot 模块下,提供通用的功能。
  14. 1. 跨 iot-biz 和 iot-gateway 的设备消息
  15. 2. 查询设备信息的通用 API
  16. </description>
  17. <dependencies>
  18. <dependency>
  19. <groupId>cn.iocoder.boot</groupId>
  20. <artifactId>yudao-common</artifactId>
  21. </dependency>
  22. </dependencies>
  23. </project>