pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. 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">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cn.iocoder.boot</groupId>
  7. <artifactId>yudao-module-iot-net-components</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <artifactId>yudao-module-iot-net-component-server</artifactId>
  11. <packaging>jar</packaging>
  12. <name>${project.artifactId}</name>
  13. <description>
  14. IoT 网络组件的独立运行服务,用于聚合和启动多个网络组件实例。
  15. </description>
  16. <dependencies>
  17. <!-- Web 相关 -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <!-- Net Component EMQX -->
  23. <dependency>
  24. <groupId>cn.iocoder.boot</groupId>
  25. <artifactId>yudao-module-iot-net-component-emqx</artifactId>
  26. <version>${revision}</version>
  27. </dependency>
  28. </dependencies>
  29. </project>