From 407885cde2e4b434509d0f97d4c627c9636f4735 Mon Sep 17 00:00:00 2001 From: heheng <475597332@qq.com> Date: 星期四, 14 八月 2025 17:23:52 +0800 Subject: [PATCH] 部分新功能 --- pom.xml | 110 ++++++++++++++++++++++++++++++++++++++++++++++++------ 1 files changed, 97 insertions(+), 13 deletions(-) diff --git a/pom.xml b/pom.xml index dbf324c..1d4fdfb 100644 --- a/pom.xml +++ b/pom.xml @@ -9,16 +9,16 @@ <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.gkhy.exam</groupId> - <artifactId>train_exam</artifactId> + <artifactId>multi_system</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>pom</packaging> - <name>train_exam</name> - <description>train exam</description> + <name>multi_system</name> + <description>multi_system</description> <modules> - <module>exam-common</module> - <module>exam-system</module> - <module>exam-admin</module> - <module>exam-framework</module> + <module>multi-common</module> + <module>multi-system</module> + <module>multi-admin</module> + <module>multi-framework</module> </modules> @@ -35,32 +35,38 @@ <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.48</fastjson.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>exam-common</artifactId> + <artifactId>multi-common</artifactId> <version>${gkhy.version}</version> </dependency> <dependency> <groupId>com.gkhy.exam</groupId> - <artifactId>exam-system</artifactId> + <artifactId>multi-system</artifactId> <version>${gkhy.version}</version> </dependency> <dependency> <groupId>com.gkhy.exam</groupId> - <artifactId>exam-framework</artifactId> + <artifactId>multi-framework</artifactId> <version>${gkhy.version}</version> </dependency> <dependency> <groupId>com.gkhy.exam</groupId> - <artifactId>exam-admin</artifactId> + <artifactId>multi-admin</artifactId> <version>${gkhy.version}</version> </dependency> @@ -69,7 +75,6 @@ <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>${pagehelper.version}</version> - </dependency> <!--Hutool Java工具包--> <dependency> @@ -127,6 +132,16 @@ <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> @@ -151,6 +166,75 @@ <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> +<!-- <dependency>--> +<!-- <groupId>com.deepoove</groupId>--> +<!-- <artifactId>poi-tl</artifactId>--> +<!-- <version>1.10.0</version>--> +<!-- </dependency>--> + +<!-- <!– 如果需要解析HTML –>--> +<!-- <dependency>--> +<!-- <groupId>org.jsoup</groupId>--> +<!-- <artifactId>jsoup</artifactId>--> +<!-- <version>1.15.3</version>--> +<!-- </dependency>--> + +<!-- <dependency>--> +<!-- <groupId>com.itextpdf</groupId>--> +<!-- <artifactId>itextpdf</artifactId>--> +<!-- <version>5.5.13.3</version>--> +<!-- </dependency>--> +<!-- <dependency>--> +<!-- <groupId>org.bouncycastle</groupId>--> +<!-- <artifactId>bcprov-jdk15on</artifactId>--> +<!-- <version>1.68</version>--> +<!-- </dependency>--> +<!-- <!– 支持中文 –>--> +<!-- <dependency>--> +<!-- <groupId>com.itextpdf</groupId>--> +<!-- <artifactId>itext-asian</artifactId>--> +<!-- <version>5.2.0</version>--> +<!-- </dependency>--> + + </dependencies> </dependencyManagement> -- Gitblit v1.9.2