pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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.haha</groupId>
  8. <artifactId>haha-parent</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>haha-service</artifactId>
  13. <name>haha-service</name>
  14. <description>业务服务模块 - Service接口和实现</description>
  15. <dependencies>
  16. <!-- 依赖Mapper模块 -->
  17. <dependency>
  18. <groupId>com.haha</groupId>
  19. <artifactId>haha-mapper</artifactId>
  20. </dependency>
  21. <!-- 依赖公共模块 -->
  22. <dependency>
  23. <groupId>com.haha</groupId>
  24. <artifactId>haha-common</artifactId>
  25. </dependency>
  26. <!-- 依赖哈哈SDK -->
  27. <dependency>
  28. <groupId>com.haha</groupId>
  29. <artifactId>haha-sdk</artifactId>
  30. </dependency>
  31. <!-- Spring Boot Web - provided scope -->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. <scope>provided</scope>
  36. </dependency>
  37. <!-- Jackson 2 过渡模块 (Spring Boot 4 兼容) -->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-jackson2</artifactId>
  41. </dependency>
  42. <!-- Sa-Token -->
  43. <dependency>
  44. <groupId>cn.dev33</groupId>
  45. <artifactId>sa-token-spring-boot3-starter</artifactId>
  46. </dependency>
  47. <!-- Spring Data Redis -->
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-data-redis</artifactId>
  51. </dependency>
  52. <!-- Spring Security Crypto (BCrypt 密码加密) -->
  53. <dependency>
  54. <groupId>org.springframework.security</groupId>
  55. <artifactId>spring-security-crypto</artifactId>
  56. </dependency>
  57. <!-- 微信支付 V3 官方 SDK -->
  58. <dependency>
  59. <groupId>com.github.wechatpay-apiv3</groupId>
  60. <artifactId>wechatpay-java</artifactId>
  61. </dependency>
  62. </dependencies>
  63. </project>