.flattened-pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>cn.iocoder.boot</groupId>
  6. <artifactId>byzs-module-iot-plugin-http</artifactId>
  7. <version>1.0.0</version>
  8. <name>byzs-module-iot-plugin-http</name>
  9. <description>物联网 插件模块 - http 插件</description>
  10. <url>https://github.com/YunaiV/ruoyi-vue-pro/byzs-module-iot/byzs-module-iot-plugins/byzs-module-iot-plugin-http</url>
  11. <dependencies>
  12. <dependency>
  13. <groupId>cn.iocoder.boot</groupId>
  14. <artifactId>byzs-module-iot-plugin-common</artifactId>
  15. <version>2.6.0-SNAPSHOT</version>
  16. <scope>compile</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. <version>3.4.5</version>
  22. <scope>compile</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>io.vertx</groupId>
  26. <artifactId>vertx-web</artifactId>
  27. <version>4.5.13</version>
  28. <scope>compile</scope>
  29. </dependency>
  30. </dependencies>
  31. <repositories>
  32. <repository>
  33. <id>huaweicloud</id>
  34. <name>huawei</name>
  35. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  36. </repository>
  37. <repository>
  38. <id>aliyunmaven</id>
  39. <name>aliyun</name>
  40. <url>https://maven.aliyun.com/repository/public</url>
  41. </repository>
  42. <repository>
  43. <snapshots>
  44. <enabled>false</enabled>
  45. </snapshots>
  46. <id>spring-milestones</id>
  47. <name>Spring Milestones</name>
  48. <url>https://repo.spring.io/milestone</url>
  49. </repository>
  50. <repository>
  51. <releases>
  52. <enabled>false</enabled>
  53. </releases>
  54. <id>spring-snapshots</id>
  55. <name>Spring Snapshots</name>
  56. <url>https://repo.spring.io/snapshot</url>
  57. </repository>
  58. </repositories>
  59. </project>