.flattened-pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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-api</artifactId>
  7. <version>2.6.0-SNAPSHOT</version>
  8. <name>byzs-module-iot-api</name>
  9. <description>物联网 模块 API,暴露给其它模块调用</description>
  10. <url>https://github.com/YunaiV/ruoyi-vue-pro/byzs-module-iot/byzs-module-iot-api</url>
  11. <dependencies>
  12. <dependency>
  13. <groupId>cn.iocoder.boot</groupId>
  14. <artifactId>byzs-common</artifactId>
  15. <version>2.6.0-SNAPSHOT</version>
  16. <scope>compile</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework</groupId>
  20. <artifactId>spring-web</artifactId>
  21. <version>6.2.6</version>
  22. <scope>provided</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.fasterxml.jackson.core</groupId>
  26. <artifactId>jackson-databind</artifactId>
  27. <version>2.18.3</version>
  28. <scope>provided</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.pf4j</groupId>
  32. <artifactId>pf4j-spring</artifactId>
  33. <version>0.9.0</version>
  34. <scope>compile</scope>
  35. <exclusions>
  36. <exclusion>
  37. <groupId>org.slf4j</groupId>
  38. <artifactId>slf4j-log4j12</artifactId>
  39. </exclusion>
  40. </exclusions>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-validation</artifactId>
  45. <version>3.4.5</version>
  46. <scope>compile</scope>
  47. <optional>true</optional>
  48. </dependency>
  49. </dependencies>
  50. <repositories>
  51. <repository>
  52. <id>huaweicloud</id>
  53. <name>huawei</name>
  54. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  55. </repository>
  56. <repository>
  57. <id>aliyunmaven</id>
  58. <name>aliyun</name>
  59. <url>https://maven.aliyun.com/repository/public</url>
  60. </repository>
  61. <repository>
  62. <snapshots>
  63. <enabled>false</enabled>
  64. </snapshots>
  65. <id>spring-milestones</id>
  66. <name>Spring Milestones</name>
  67. <url>https://repo.spring.io/milestone</url>
  68. </repository>
  69. <repository>
  70. <releases>
  71. <enabled>false</enabled>
  72. </releases>
  73. <id>spring-snapshots</id>
  74. <name>Spring Snapshots</name>
  75. <url>https://repo.spring.io/snapshot</url>
  76. </repository>
  77. </repositories>
  78. </project>