|
|
<?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">
|
|
|
<parent>
|
|
|
<artifactId>ruoyi</artifactId>
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
<version>3.9.1</version>
|
|
|
</parent>
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
<packaging>jar</packaging>
|
|
|
<groupId>com.course</groupId>
|
|
|
<artifactId>course</artifactId>
|
|
|
|
|
|
<description>
|
|
|
排课管理系统模块
|
|
|
</description>
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
<artifactId>ruoyi-common</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
<artifactId>ruoyi-system</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
<!-- MyBatis-Plus核心依赖 -->
|
|
|
<dependency>
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
<version>3.5.3.1</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- Lombok(简化代码) -->
|
|
|
<dependency>
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok</artifactId>
|
|
|
<optional>true</optional>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
<!-- 分页插件 -->
|
|
|
<dependency>
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
<version>1.4.6</version>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
<!-- 添加SpringDoc OpenAPI依赖 -->
|
|
|
<dependency>
|
|
|
<groupId>org.springdoc</groupId>
|
|
|
<artifactId>springdoc-openapi-ui</artifactId>
|
|
|
<version>1.6.15</version> <!-- 兼容Spring Boot 2.7.x的正确版本 -->
|
|
|
</dependency>
|
|
|
|
|
|
<!-- Knife4j UI增强(可选) -->
|
|
|
<dependency>
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
<artifactId>knife4j-openapi2-spring-boot-starter</artifactId>
|
|
|
<version>4.3.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</project> |