| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?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.xuekairui</groupId>
- <artifactId>zhijiayun-pharmacy</artifactId>
- <version>1.0.0</version>
- </parent>
- <artifactId>zhijiayun-activity</artifactId>
- <name>zhijiayun-activity</name>
- <description>智价云(药店版)-活动模块(签到、抽奖等运营活动统一管理)</description>
- <dependencies>
- <!-- 公共模块 -->
- <dependency>
- <groupId>com.xuekairui</groupId>
- <artifactId>zhijiayun-common</artifactId>
- </dependency>
- <!-- 用户模块(复用 CrawlerQuotaGrantService 发放爬虫次数奖励、User 实体等) -->
- <dependency>
- <groupId>com.xuekairui</groupId>
- <artifactId>zhijiayun-user</artifactId>
- </dependency>
- <!-- 邀请模块(补发邀请奖励需查询邀请关系) -->
- <dependency>
- <groupId>com.xuekairui</groupId>
- <artifactId>zhijiayun-invite</artifactId>
- </dependency>
- <!-- Spring Boot -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-validation</artifactId>
- </dependency>
- <!-- MyBatis-Plus -->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
- </dependency>
- </dependencies>
- </project>
|