| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?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-quiz</artifactId>
- <name>zhijiayun-quiz</name>
- <description>智价云(药店版)- 执业药师刷题模块(题库管理、做题、真题模考、埋点统计)</description>
- <dependencies>
- <!-- 公共模块 -->
- <dependency>
- <groupId>com.xuekairui</groupId>
- <artifactId>zhijiayun-common</artifactId>
- </dependency>
- <!-- 用户模块(埋点报表需要关联用户信息) -->
- <dependency>
- <groupId>com.xuekairui</groupId>
- <artifactId>zhijiayun-user</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>
- <!-- EasyExcel -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>easyexcel</artifactId>
- <version>4.0.3</version>
- </dependency>
- </dependencies>
- </project>
|