pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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 -->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. <scope>provided</scope>
  36. </dependency>
  37. <!-- MyBatis Plus -->
  38. <dependency>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  41. </dependency>
  42. <!-- Sa-Token -->
  43. <dependency>
  44. <groupId>cn.dev33</groupId>
  45. <artifactId>sa-token-spring-boot3-starter</artifactId>
  46. </dependency>
  47. <!-- Hutool 工具包 -->
  48. <dependency>
  49. <groupId>cn.hutool</groupId>
  50. <artifactId>hutool-all</artifactId>
  51. </dependency>
  52. <!-- Spring Data Redis -->
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-data-redis</artifactId>
  56. </dependency>
  57. <!-- FastJson -->
  58. <dependency>
  59. <groupId>com.alibaba</groupId>
  60. <artifactId>fastjson</artifactId>
  61. </dependency>
  62. <!-- PageHelper -->
  63. <dependency>
  64. <groupId>com.github.pagehelper</groupId>
  65. <artifactId>pagehelper</artifactId>
  66. </dependency>
  67. <!-- Lombok -->
  68. <dependency>
  69. <groupId>org.projectlombok</groupId>
  70. <artifactId>lombok</artifactId>
  71. <optional>true</optional>
  72. </dependency>
  73. </dependencies>
  74. </project>