pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. <!-- 企得宝 ERP SDK -->
  32. <dependency>
  33. <groupId>com.qdb</groupId>
  34. <artifactId>qdb-sdk</artifactId>
  35. <version>1.0.0</version>
  36. </dependency>
  37. <!-- Spring Boot Web - provided scope -->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-web</artifactId>
  41. <scope>provided</scope>
  42. </dependency>
  43. <!-- Jackson 2 过渡模块 (Spring Boot 4 兼容) -->
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-jackson2</artifactId>
  47. </dependency>
  48. <!-- Sa-Token -->
  49. <dependency>
  50. <groupId>cn.dev33</groupId>
  51. <artifactId>sa-token-spring-boot3-starter</artifactId>
  52. </dependency>
  53. <!-- Spring Data Redis -->
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-data-redis</artifactId>
  57. </dependency>
  58. <!-- Spring Security Crypto (BCrypt 密码加密) -->
  59. <dependency>
  60. <groupId>org.springframework.security</groupId>
  61. <artifactId>spring-security-crypto</artifactId>
  62. </dependency>
  63. <!-- 微信支付 V3 官方 SDK -->
  64. <dependency>
  65. <groupId>com.github.wechatpay-apiv3</groupId>
  66. <artifactId>wechatpay-java</artifactId>
  67. </dependency>
  68. </dependencies>
  69. </project>