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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>3.4.0</version>
  9. <relativePath/>
  10. </parent>
  11. <groupId>com.water</groupId>
  12. <artifactId>water-management-system</artifactId>
  13. <version>1.0.0</version>
  14. <packaging>pom</packaging>
  15. <name>Water Management System</name>
  16. <description>智慧水务管理系统</description>
  17. <properties>
  18. <java.version>17</java.version>
  19. <spring-cloud.version>2024.0.0</spring-cloud.version>
  20. <spring-boot.version>3.4.0</spring-boot.version>
  21. <mybatis-plus.version>3.5.7</mybatis-plus.version>
  22. <sa-token.version>1.38.0</sa-token.version>
  23. <mysql.version>8.0.33</mysql.version>
  24. <postgresql.version>42.7.3</postgresql.version>
  25. <tdengine.version>3.6.0.0</tdengine.version>
  26. <minio.version>8.5.9</minio.version>
  27. <fastjson2.version>2.0.52</fastjson2.version>
  28. <hutool.version>5.8.26</hutool.version>
  29. <lombok.version>1.18.34</lombok.version>
  30. <maven.compiler.source>${java.version}</maven.compiler.source>
  31. <maven.compiler.target>${java.version}</maven.compiler.target>
  32. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  33. </properties>
  34. <modules>
  35. <module>wm-common</module>
  36. <module>wm-base</module>
  37. <module>wm-iot</module>
  38. <module>wm-notify</module>
  39. <module>wm-production</module>
  40. <module>wm-revenue</module>
  41. <module>wm-patrol</module>
  42. <module>wm-bi</module>
  43. <module>wm-gateway</module>
  44. <module>wm-job</module>
  45. <module>wm-data-engine</module>
  46. <module>wm-bpm</module>
  47. </modules>
  48. <dependencyManagement>
  49. <dependencies>
  50. <!-- Spring Cloud -->
  51. <dependency>
  52. <groupId>org.springframework.cloud</groupId>
  53. <artifactId>spring-cloud-dependencies</artifactId>
  54. <version>${spring-cloud.version}</version>
  55. <type>pom</type>
  56. <scope>import</scope>
  57. </dependency>
  58. <!-- Spring Boot -->
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-dependencies</artifactId>
  62. <version>${spring-boot.version}</version>
  63. <type>pom</type>
  64. <scope>import</scope>
  65. </dependency>
  66. <!-- MyBatis Plus -->
  67. <dependency>
  68. <groupId>com.baomidou</groupId>
  69. <artifactId>mybatis-plus-boot-starter</artifactId>
  70. <version>${mybatis-plus.version}</version>
  71. </dependency>
  72. <!-- Sa-Token 权限框架 -->
  73. <dependency>
  74. <groupId>cn.dev33</groupId>
  75. <artifactId>sa-token-spring-boot-starter</artifactId>
  76. <version>${sa-token.version}</version>
  77. </dependency>
  78. <!-- 数据库驱动 -->
  79. <dependency>
  80. <groupId>mysql</groupId>
  81. <artifactId>mysql-connector-java</artifactId>
  82. <version>${mysql.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.postgresql</groupId>
  86. <artifactId>postgresql</artifactId>
  87. <version>${postgresql.version}</version>
  88. </dependency>
  89. <!-- TDengine 时序数据库 -->
  90. <dependency>
  91. <groupId>com.taosdata.jdbc</groupId>
  92. <artifactId>taos-jdbcdriver</artifactId>
  93. <version>${tdengine.version}</version>
  94. </dependency>
  95. <!-- FastJSON2 -->
  96. <dependency>
  97. <groupId>com.alibaba.fastjson2</groupId>
  98. <artifactId>fastjson2</artifactId>
  99. <version>${fastjson2.version}</version>
  100. </dependency>
  101. <!-- Hutool 工具类 -->
  102. <dependency>
  103. <groupId>cn.hutool</groupId>
  104. <artifactId>hutool-all</artifactId>
  105. <version>${hutool.version}</version>
  106. </dependency>
  107. <!-- Lombok -->
  108. <dependency>
  109. <groupId>org.projectlombok</groupId>
  110. <artifactId>lombok</artifactId>
  111. <version>${lombok.version}</version>
  112. <scope>provided</scope>
  113. </dependency>
  114. </dependencies>
  115. </dependencyManagement>
  116. <build>
  117. <plugins>
  118. <plugin>
  119. <groupId>org.springframework.boot</groupId>
  120. <artifactId>spring-boot-maven-plugin</artifactId>
  121. <version>${spring-boot.version}</version>
  122. <configuration>
  123. <skip>true</skip>
  124. </configuration>
  125. </plugin>
  126. </plugins>
  127. </build>
  128. </project>