| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-member</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <artifactId>business-member-service</artifactId>
- <name>business-member-service</name>
- <description>会员管理模块 - Service层(Service、Mapper)</description>
- <properties>
- <maven.compiler.source>21</maven.compiler.source>
- <maven.compiler.target>21</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>jeesharp-spring-boot-starter-mybatis</artifactId>
- </dependency>
- <!-- Bean 模块依赖 -->
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-member-bean</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>jeesharp-spring-boot-starter-member-auth</artifactId>
- </dependency>
- <!-- jeesharp-spring-boot-starter-file -->
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>jeesharp-spring-boot-starter-file</artifactId>
- </dependency>
- <!-- jeesharp-spring-boot-starter-security -->
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>jeesharp-spring-boot-starter-security</artifactId>
- </dependency>
- <!-- 邮件网关(验证码发送) -->
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>jeesharp-spring-boot-starter-mail</artifactId>
- </dependency>
- <!-- Micrometer 监控 - SMS Starter 需要 -->
- <dependency>
- <groupId>io.micrometer</groupId>
- <artifactId>micrometer-core</artifactId>
- </dependency>
- <!-- 短信网关(验证码发送) -->
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>jeesharp-spring-boot-starter-sms</artifactId>
- </dependency>
- <!-- 消息中心(登录验证码等按发送配置编排) -->
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>jeesharp-spring-boot-starter-message</artifactId>
- </dependency>
- </dependencies>
- </project>
|