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

pom.xml 4.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.water</groupId>
  8. <artifactId>water-management-system</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>wm-revenue</artifactId>
  12. <version>1.0.0</version>
  13. <name>Water Management System - Revenue Service</name>
  14. <description>智慧水务营业收费服务</description>
  15. <dependencies>
  16. <!-- Spring Boot Starter -->
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-data-jpa</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-validation</artifactId>
  28. </dependency>
  29. <!-- Spring Boot Actuator for monitoring -->
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-actuator</artifactId>
  33. </dependency>
  34. <!-- Database -->
  35. <dependency>
  36. <groupId>org.postgresql</groupId>
  37. <artifactId>postgresql</artifactId>
  38. <scope>runtime</scope>
  39. </dependency>
  40. <!-- JSON Processing -->
  41. <dependency>
  42. <groupId>com.fasterxml.jackson.core</groupId>
  43. <artifactId>jackson-databind</artifactId>
  44. </dependency>
  45. <!-- Lombok -->
  46. <dependency>
  47. <groupId>org.projectlombok</groupId>
  48. <artifactId>lombok</artifactId>
  49. <optional>true</optional>
  50. </dependency>
  51. <!-- Swagger/OpenAPI -->
  52. <dependency>
  53. <groupId>org.springdoc</groupId>
  54. <artifactId>springdoc-openapi-ui</artifactId>
  55. <version>1.7.0</version>
  56. </dependency>
  57. <!-- Database Migration -->
  58. <dependency>
  59. <groupId>org.flywaydb</groupId>
  60. <artifactId>flyway-core</artifactId>
  61. </dependency>
  62. <!-- Spring Task Scheduling -->
  63. <dependency>
  64. <groupId>org.springframework</groupId>
  65. <artifactId>spring-context-support</artifactId>
  66. </dependency>
  67. <!-- Quartz Scheduling (optional) -->
  68. <dependency>
  69. <groupId>org.quartz-scheduler</groupId>
  70. <artifactId>quartz</artifactId>
  71. <version>2.3.2</version>
  72. </dependency>
  73. <!-- Payment Gateway Integration -->
  74. <dependency>
  75. <groupId>com.alipay.sdk</groupId>
  76. <artifactId>alipay-sdk-java</artifactId>
  77. <version>4.35.71.ALL</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.github.wxpay</groupId>
  81. <artifactId>wxpay-sdk</artifactId>
  82. <version>0.0.3</version>
  83. </dependency>
  84. <!-- Logging -->
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-starter-logging</artifactId>
  88. </dependency>
  89. <!-- Test Dependencies -->
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-test</artifactId>
  93. <scope>test</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.h2database</groupId>
  97. <artifactId>h2</artifactId>
  98. <scope>test</scope>
  99. </dependency>
  100. </dependencies>
  101. <build>
  102. <plugins>
  103. <plugin>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-maven-plugin</artifactId>
  106. <configuration>
  107. <excludes>
  108. <exclude>
  109. <groupId>org.projectlombok</groupId>
  110. <artifactId>lombok</artifactId>
  111. </exclude>
  112. </excludes>
  113. </configuration>
  114. </plugin>
  115. <plugin>
  116. <groupId>org.flywaydb</groupId>
  117. <artifactId>flyway-maven-plugin</artifactId>
  118. <version>9.22.3</version>
  119. <configuration>
  120. <url>jdbc:postgresql://localhost:5432/water_revenue</url>
  121. <user>postgres</user>
  122. <password>password</password>
  123. <locations>classpath:db,migration</locations>
  124. </configuration>
  125. </plugin>
  126. </plugins>
  127. </build>
  128. </project>