智慧水务管理系统 - 精河县供水工程综合管理平台

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.water</groupId>
  8. <artifactId>wm-parent</artifactId>
  9. <version>1.0.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>wm-data</artifactId>
  12. <name>wm-data</name>
  13. <description>数据存储层模块 - TDengine时序存储 + MinIO对象存储 + 存储策略管理</description>
  14. <properties>
  15. <taos-jdbc.version>3.2.7</taos-jdbc.version>
  16. </properties>
  17. <dependencies>
  18. <!-- 公共模块 -->
  19. <dependency>
  20. <groupId>com.water</groupId>
  21. <artifactId>wm-common</artifactId>
  22. </dependency>
  23. <!-- Web -->
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <!-- Nacos 服务发现 -->
  29. <dependency>
  30. <groupId>com.alibaba.cloud</groupId>
  31. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  32. </dependency>
  33. <!-- PostgreSQL (主库) -->
  34. <dependency>
  35. <groupId>org.postgresql</groupId>
  36. <artifactId>postgresql</artifactId>
  37. </dependency>
  38. <!-- MyBatis-Plus -->
  39. <dependency>
  40. <groupId>com.baomidou</groupId>
  41. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  42. </dependency>
  43. <!-- TDengine JDBC Driver -->
  44. <dependency>
  45. <groupId>io.taosdata.jdbc</groupId>
  46. <artifactId>taos-jdbcdriver</artifactId>
  47. <version>${taos-jdbc.version}</version>
  48. </dependency>
  49. <!-- MinIO SDK -->
  50. <dependency>
  51. <groupId>io.minio</groupId>
  52. <artifactId>minio</artifactId>
  53. </dependency>
  54. <!-- HikariCP 连接池 (已含在spring-boot-starter-jdbc) -->
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-jdbc</artifactId>
  58. </dependency>
  59. <!-- Redis 缓存 -->
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-data-redis</artifactId>
  63. </dependency>
  64. <!-- Hutool 工具库 -->
  65. <dependency>
  66. <groupId>cn.hutool</groupId>
  67. <artifactId>hutool-all</artifactId>
  68. </dependency>
  69. <!-- Knife4j OpenAPI3 -->
  70. <dependency>
  71. <groupId>com.github.xiaoymin</groupId>
  72. <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
  73. </dependency>
  74. <!-- Validation -->
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-validation</artifactId>
  78. </dependency>
  79. <!-- Test -->
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-starter-test</artifactId>
  83. <scope>test</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.h2database</groupId>
  87. <artifactId>h2</artifactId>
  88. <scope>test</scope>
  89. </dependency>
  90. </dependencies>
  91. <build>
  92. <plugins>
  93. <plugin>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-maven-plugin</artifactId>
  96. </plugin>
  97. </plugins>
  98. </build>
  99. </project>