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

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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><groupId>com.water</groupId><artifactId>wm-parent</artifactId><version>1.0.0-SNAPSHOT</version></parent>
  7. <artifactId>wm-mobile-app</artifactId>
  8. <name>wm-mobile-app</name>
  9. <description>移动APP三合一后端服务层 - 供水/巡检/营业收费统一入口</description>
  10. <dependencies>
  11. <dependency><groupId>com.water</groupId><artifactId>wm-common</artifactId></dependency>
  12. <!-- Web -->
  13. <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency>
  14. <!-- Nacos Discovery -->
  15. <dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId></dependency>
  16. <!-- MyBatis-Plus -->
  17. <dependency><groupId>com.baomidou</groupId><artifactId>mybatis-plus-spring-boot3-starter</artifactId></dependency>
  18. <!-- Sa-Token -->
  19. <dependency><groupId>cn.dev33</groupId><artifactId>sa-token-spring-boot3-starter</artifactId></dependency>
  20. <!-- PostgreSQL -->
  21. <dependency><groupId>org.postgresql</groupId><artifactId>postgresql</artifactId></dependency>
  22. <!-- Knife4j Swagger -->
  23. <dependency><groupId>com.github.xiaoymin</groupId><artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId></dependency>
  24. <!-- Test -->
  25. <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope></dependency>
  26. </dependencies>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-maven-plugin</artifactId>
  32. <configuration><excludes><exclude><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId></exclude></excludes></configuration>
  33. </plugin>
  34. </plugins>
  35. </build>
  36. </project>