| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?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.haha</groupId>
- <artifactId>haha-parent</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <artifactId>haha-service</artifactId>
- <name>haha-service</name>
- <description>业务服务模块 - Service接口和实现</description>
- <dependencies>
- <!-- 依赖Mapper模块 -->
- <dependency>
- <groupId>com.haha</groupId>
- <artifactId>haha-mapper</artifactId>
- </dependency>
- <!-- 依赖公共模块 -->
- <dependency>
- <groupId>com.haha</groupId>
- <artifactId>haha-common</artifactId>
- </dependency>
- <!-- 依赖哈哈SDK -->
- <dependency>
- <groupId>com.haha</groupId>
- <artifactId>haha-sdk</artifactId>
- </dependency>
- <!-- Spring Boot Web - provided scope -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <scope>provided</scope>
- </dependency>
- <!-- Jackson 2 过渡模块 (Spring Boot 4 兼容) -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-jackson2</artifactId>
- </dependency>
- <!-- Sa-Token -->
- <dependency>
- <groupId>cn.dev33</groupId>
- <artifactId>sa-token-spring-boot3-starter</artifactId>
- </dependency>
- <!-- Spring Data Redis -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- </dependency>
- <!-- Spring Security Crypto (BCrypt 密码加密) -->
- <dependency>
- <groupId>org.springframework.security</groupId>
- <artifactId>spring-security-crypto</artifactId>
- </dependency>
- <!-- 微信支付 V3 官方 SDK -->
- <dependency>
- <groupId>com.github.wechatpay-apiv3</groupId>
- <artifactId>wechatpay-java</artifactId>
- </dependency>
- </dependencies>
- </project>
|