pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>yudao-module-iot-net-components</artifactId>
  7. <groupId>cn.iocoder.boot</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>yudao-module-iot-net-component-emqx</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. 物联网网络组件 EMQX 模块
  16. </description>
  17. <dependencies>
  18. <dependency>
  19. <groupId>cn.iocoder.boot</groupId>
  20. <artifactId>yudao-module-iot-net-component-core</artifactId>
  21. <version>${revision}</version>
  22. </dependency>
  23. <!-- 工具类相关 -->
  24. <dependency>
  25. <groupId>io.vertx</groupId>
  26. <artifactId>vertx-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>io.vertx</groupId>
  30. <artifactId>vertx-mqtt</artifactId>
  31. </dependency>
  32. <!-- 参数校验 -->
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-validation</artifactId>
  36. <optional>true</optional>
  37. </dependency>
  38. </dependencies>
  39. </project>