72 lines
2.2 KiB
XML
72 lines
2.2 KiB
XML
<?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-judgement</artifactId>
|
|
<groupId>pc.exam</groupId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>exam-module-judgement-biz</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
<description>
|
|
judgement 模块,主要实现判题相关功能
|
|
</description>
|
|
|
|
<dependencies>
|
|
<!-- Spring Boot 核心 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 业务组件 -->
|
|
<dependency>
|
|
<groupId>pc.exam</groupId>
|
|
<artifactId>exam-module-judgement-api</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
|
|
<!-- 考试模块 API -->
|
|
<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>
|