<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.7.16</version>
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
<groupId>com.gkhy.exam</groupId>
|
<artifactId>multi_system</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
<packaging>pom</packaging>
|
<name>multi_system</name>
|
<description>multi_system</description>
|
<modules>
|
<module>multi-common</module>
|
<module>multi-system</module>
|
<module>multi-admin</module>
|
<module>multi-framework</module>
|
</modules>
|
|
|
<properties>
|
<gkhy.version>0.0.1-SNAPSHOT</gkhy.version>
|
<java.version>1.8</java.version>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<pagehelper.version>1.4.7</pagehelper.version>
|
<hutool.version>5.8.9</hutool.version>
|
<knife4j.version>2.0.8</knife4j.version>
|
<freemarker.version>2.3.31</freemarker.version>
|
|
<druid.version>1.2.14</druid.version>
|
<mybatis-plus.version>3.5.1</mybatis-plus.version>
|
<mysql-connector.version>8.0.29</mysql-connector.version>
|
<jwt.version>0.9.1</jwt.version>
|
<fastjson.version>2.0.52</fastjson.version>
|
<caffeine.version>2.9.3</caffeine.version>
|
<minio.version>8.4.5</minio.version>
|
<kaptcha.version>2.3.3</kaptcha.version>
|
<bitwalker.version>1.21</bitwalker.version>
|
<ffmpeg.version>0.7.0</ffmpeg.version>
|
<poi.version>5.2.3</poi.version>
|
<pdfbox.version>2.0.27</pdfbox.version>
|
<jaudiotagger.version>2.0.1</jaudiotagger.version>
|
<easyexcel.version>4.0.2</easyexcel.version>
|
|
</properties>
|
<dependencyManagement>
|
<dependencies>
|
<dependency>
|
<groupId>com.gkhy.exam</groupId>
|
<artifactId>multi-common</artifactId>
|
<version>${gkhy.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.gkhy.exam</groupId>
|
<artifactId>multi-system</artifactId>
|
<version>${gkhy.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.gkhy.exam</groupId>
|
<artifactId>multi-framework</artifactId>
|
<version>${gkhy.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.gkhy.exam</groupId>
|
<artifactId>multi-admin</artifactId>
|
<version>${gkhy.version}</version>
|
</dependency>
|
|
<!--MyBatis分页插件-->
|
<dependency>
|
<groupId>com.github.pagehelper</groupId>
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
<version>${pagehelper.version}</version>
|
</dependency>
|
<!--Hutool Java工具包-->
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-all</artifactId>
|
<version>${hutool.version}</version>
|
</dependency>
|
|
<!--接口文档生成工具包-->
|
<dependency>
|
<groupId>com.github.xiaoymin</groupId>
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
<version>${knife4j.version}</version>
|
</dependency>
|
|
|
<!-- 阿里数据库连接池 -->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid-spring-boot-starter</artifactId>
|
<version>${druid.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>${mysql-connector.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>${mybatis-plus.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-generator</artifactId>
|
<version>${mybatis-plus.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.freemarker</groupId>
|
<artifactId>freemarker</artifactId>
|
<version>${freemarker.version}</version>
|
</dependency>
|
|
<!--JWT(Json Web Token)登录支持-->
|
<dependency>
|
<groupId>io.jsonwebtoken</groupId>
|
<artifactId>jjwt</artifactId>
|
<version>${jwt.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.alibaba.fastjson2</groupId>
|
<artifactId>fastjson2</artifactId>
|
<version>${fastjson.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba.fastjson2</groupId>
|
<artifactId>fastjson2-extension</artifactId>
|
<version>${fastjson.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba.fastjson2</groupId>
|
<artifactId>fastjson2-extension-spring5</artifactId>
|
<version>${fastjson.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
<artifactId>caffeine</artifactId>
|
<version>${caffeine.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>io.minio</groupId>
|
<artifactId>minio</artifactId>
|
<version>${minio.version}</version>
|
</dependency>
|
|
<!-- 验证码 -->
|
<dependency>
|
<groupId>pro.fessional</groupId>
|
<artifactId>kaptcha</artifactId>
|
<version>${kaptcha.version}</version>
|
</dependency>
|
|
<!-- 解析客户端操作系统、浏览器等 -->
|
<dependency>
|
<groupId>eu.bitwalker</groupId>
|
<artifactId>UserAgentUtils</artifactId>
|
<version>${bitwalker.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>net.bramp.ffmpeg</groupId>
|
<artifactId>ffmpeg</artifactId>
|
<version>${ffmpeg.version}</version>
|
</dependency>
|
|
<!-- poi -->
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-scratchpad</artifactId>
|
<version>${poi.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>${poi.version}</version>
|
</dependency>
|
|
<!-- pdf -->
|
<dependency>
|
<groupId>org.apache.pdfbox</groupId>
|
<artifactId>pdfbox</artifactId>
|
<version>${pdfbox.version}</version>
|
</dependency>
|
|
<!-- mp3文件支持(如语音时长)-->
|
<dependency>
|
<groupId>org</groupId>
|
<artifactId>jaudiotagger</artifactId>
|
<version>${jaudiotagger.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>easyexcel</artifactId>
|
<version>${easyexcel.version}</version>
|
</dependency>
|
</dependencies>
|
</dependencyManagement>
|
|
<dependencies>
|
<!-- <dependency>-->
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
<!-- <artifactId>spring-boot-starter</artifactId>-->
|
<!-- </dependency>-->
|
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-all</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
<plugins>
|
<!-- <plugin>-->
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
|
<!-- </plugin>-->
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<version>3.11.0</version>
|
<configuration>
|
<source>${java.version}</source>
|
<target>${java.version}</target>
|
<encoding>${project.build.sourceEncoding}</encoding>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|