pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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.xinghuacuntravel</groupId>
  8. <artifactId>business-member</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>business-member-service</artifactId>
  12. <name>business-member-service</name>
  13. <description>会员管理模块 - Service层(Service、Mapper)</description>
  14. <properties>
  15. <maven.compiler.source>21</maven.compiler.source>
  16. <maven.compiler.target>21</maven.compiler.target>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.jeesharp.boot</groupId>
  22. <artifactId>jeesharp-spring-boot-starter-mybatis</artifactId>
  23. </dependency>
  24. <!-- Bean 模块依赖 -->
  25. <dependency>
  26. <groupId>com.xinghuacuntravel</groupId>
  27. <artifactId>business-member-bean</artifactId>
  28. <version>${project.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.jeesharp.boot</groupId>
  32. <artifactId>jeesharp-spring-boot-starter-member-auth</artifactId>
  33. </dependency>
  34. <!-- jeesharp-spring-boot-starter-file -->
  35. <dependency>
  36. <groupId>org.jeesharp.boot</groupId>
  37. <artifactId>jeesharp-spring-boot-starter-file</artifactId>
  38. </dependency>
  39. <!-- jeesharp-spring-boot-starter-security -->
  40. <dependency>
  41. <groupId>org.jeesharp.boot</groupId>
  42. <artifactId>jeesharp-spring-boot-starter-security</artifactId>
  43. </dependency>
  44. <!-- 邮件网关(验证码发送) -->
  45. <dependency>
  46. <groupId>org.jeesharp.boot</groupId>
  47. <artifactId>jeesharp-spring-boot-starter-mail</artifactId>
  48. </dependency>
  49. <!-- Micrometer 监控 - SMS Starter 需要 -->
  50. <dependency>
  51. <groupId>io.micrometer</groupId>
  52. <artifactId>micrometer-core</artifactId>
  53. </dependency>
  54. <!-- 短信网关(验证码发送) -->
  55. <dependency>
  56. <groupId>org.jeesharp.boot</groupId>
  57. <artifactId>jeesharp-spring-boot-starter-sms</artifactId>
  58. </dependency>
  59. <!-- 消息中心(登录验证码等按发送配置编排) -->
  60. <dependency>
  61. <groupId>org.jeesharp.boot</groupId>
  62. <artifactId>jeesharp-spring-boot-starter-message</artifactId>
  63. </dependency>
  64. </dependencies>
  65. </project>