pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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-http</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. 物联网网络组件 HTTP 模块
  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>cn.iocoder.boot</groupId>-->
  26. <!-- <artifactId>yudao-module-iot-plugin-script</artifactId>-->
  27. <!-- <version>${revision}</version>-->
  28. <!-- </dependency>-->
  29. <!-- 工具类相关 -->
  30. <dependency>
  31. <groupId>io.vertx</groupId>
  32. <artifactId>vertx-web</artifactId>
  33. </dependency>
  34. <!-- 参数校验 -->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-validation</artifactId>
  38. <optional>true</optional>
  39. </dependency>
  40. </dependencies>
  41. </project>