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

pom.xml 4.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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
  5. https://maven.apache.org/xsd/maven-4.0.0.xsd">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>org.springframework.boot</groupId>
  9. <artifactId>spring-boot-starter-parent</artifactId>
  10. <version>3.3.5</version>
  11. <relativePath/>
  12. </parent>
  13. <groupId>com.water</groupId>
  14. <artifactId>wm-parent</artifactId>
  15. <version>1.0.0-SNAPSHOT</version>
  16. <packaging>pom</packaging>
  17. <name>智慧水务管理系统</name>
  18. <description>精河县供水工程综合管理平台</description>
  19. <properties>
  20. <java.version>17</java.version>
  21. <spring-cloud.version>2023.0.3</spring-cloud.version>
  22. <spring-cloud-alibaba.version>2023.0.1.0</spring-cloud-alibaba.version>
  23. <mybatis-plus.version>3.5.7</mybatis-plus.version>
  24. <sa-token.version>1.39.0</sa-token.version>
  25. <hutool.version>5.8.29</hutool.version>
  26. <knife4j.version>4.5.0</knife4j.version>
  27. <easyexcel.version>3.3.4</easyexcel.version>
  28. <postgis.version>2023.1.0</postgis.version>
  29. <minio.version>8.5.10</minio.version>
  30. </properties>
  31. <modules>
  32. <module>wm-common</module>
  33. <module>wm-gateway</module>
  34. <module>wm-base</module>
  35. <module>wm-iot</module>
  36. <module>wm-data-engine</module>
  37. <module>wm-bpm</module>
  38. <module>wm-bpm-engine</module>
  39. <module>wm-production</module>
  40. <module>wm-revenue</module>
  41. <module>wm-patrol</module>
  42. <module>wm-bi</module>
  43. <module>wm-notify</module>
  44. <module>wm-job</module>
  45. <module>wm-dispatch</module>
  46. <module>wm-system</module>
  47. <module>wm-mobile-app</module>
  48. <module>wm-config</module>
  49. </modules>
  50. <dependencyManagement>
  51. <dependencies>
  52. <dependency>
  53. <groupId>org.springframework.cloud</groupId>
  54. <artifactId>spring-cloud-dependencies</artifactId>
  55. <version>${spring-cloud.version}</version>
  56. <type>pom</type>
  57. <scope>import</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.alibaba.cloud</groupId>
  61. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  62. <version>${spring-cloud-alibaba.version}</version>
  63. <type>pom</type>
  64. <scope>import</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.baomidou</groupId>
  68. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  69. <version>${mybatis-plus.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>cn.dev33</groupId>
  73. <artifactId>sa-token-spring-boot3-starter</artifactId>
  74. <version>${sa-token.version}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>cn.hutool</groupId>
  78. <artifactId>hutool-all</artifactId>
  79. <version>${hutool.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.github.xiaoymin</groupId>
  83. <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
  84. <version>${knife4j.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.alibaba</groupId>
  88. <artifactId>easyexcel</artifactId>
  89. <version>${easyexcel.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>net.postgis</groupId>
  93. <artifactId>postgis-jdbc</artifactId>
  94. <version>${postgis.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>io.minio</groupId>
  98. <artifactId>minio</artifactId>
  99. <version>${minio.version}</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.water</groupId>
  103. <artifactId>wm-common</artifactId>
  104. <version>${project.version}</version>
  105. </dependency>
  106. </dependencies>
  107. </dependencyManagement>
  108. <dependencies>
  109. <dependency>
  110. <groupId>org.projectlombok</groupId>
  111. <artifactId>lombok</artifactId>
  112. <optional>true</optional>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-starter-test</artifactId>
  117. <scope>test</scope>
  118. </dependency>
  119. </dependencies>
  120. </project>