.flattened-pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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-emqx</artifactId>
  7. <version>1.0.0</version>
  8. <name>byzs-module-iot-plugin-emqx</name>
  9. <description>物联网 插件模块 - emqx 插件</description>
  10. <url>https://github.com/YunaiV/ruoyi-vue-pro/byzs-module-iot/byzs-module-iot-plugins/byzs-module-iot-plugin-emqx</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. <dependency>
  31. <groupId>io.vertx</groupId>
  32. <artifactId>vertx-mqtt</artifactId>
  33. <version>4.5.13</version>
  34. <scope>compile</scope>
  35. </dependency>
  36. </dependencies>
  37. <repositories>
  38. <repository>
  39. <id>huaweicloud</id>
  40. <name>huawei</name>
  41. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  42. </repository>
  43. <repository>
  44. <id>aliyunmaven</id>
  45. <name>aliyun</name>
  46. <url>https://maven.aliyun.com/repository/public</url>
  47. </repository>
  48. <repository>
  49. <snapshots>
  50. <enabled>false</enabled>
  51. </snapshots>
  52. <id>spring-milestones</id>
  53. <name>Spring Milestones</name>
  54. <url>https://repo.spring.io/milestone</url>
  55. </repository>
  56. <repository>
  57. <releases>
  58. <enabled>false</enabled>
  59. </releases>
  60. <id>spring-snapshots</id>
  61. <name>Spring Snapshots</name>
  62. <url>https://repo.spring.io/snapshot</url>
  63. </repository>
  64. </repositories>
  65. </project>