Files
pengchen-exam-java/exam-module-exam/exam-module-exam-biz/pom.xml

65 lines
2.0 KiB
XML
Raw Normal View History

2025-04-17 15:37:37 +08:00
<?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>exam-module-exam</artifactId>
<groupId>pc.exam</groupId>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exam-module-exam-biz</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>
exam 模块,主要实现考试相关功能
</description>
<dependencies>
<!-- Spring Boot 核心 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<!-- 业务组件 -->
<dependency>
<groupId>pc.exam</groupId>
<artifactId>exam-module-exam-api</artifactId>
<version>${revision}</version>
</dependency>
<!-- Web 相关 -->
<dependency>
<groupId>pc.exam</groupId>
<artifactId>exam-spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>pc.exam</groupId>
<artifactId>exam-spring-boot-starter-security</artifactId>
</dependency>
<!-- DB 相关 -->
<dependency>
<groupId>pc.exam</groupId>
<artifactId>exam-spring-boot-starter-mybatis</artifactId>
</dependency>
<!-- Test 测试相关 -->
<dependency>
<groupId>pc.exam</groupId>
<artifactId>exam-spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- 工具类相关 -->
<dependency>
<groupId>pc.exam</groupId>
<artifactId>exam-spring-boot-starter-excel</artifactId>
</dependency>
</dependencies>
</project>