From 03dc0bda693feaeb2fa684b70db52feea8ea65a7 Mon Sep 17 00:00:00 2001 From: heheng <475597332@qq.com> Date: 星期二, 06 五月 2025 13:37:01 +0800 Subject: [PATCH] 增加专家导出字段 --- pom.xml | 204 +++++++++++++++++++++++++++++++-------------------- 1 files changed, 124 insertions(+), 80 deletions(-) diff --git a/pom.xml b/pom.xml index 2992b83..e83a57c 100644 --- a/pom.xml +++ b/pom.xml @@ -4,47 +4,113 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> - <groupId>com.ruoyi</groupId> - <artifactId>ruoyi</artifactId> - <version>3.8.2</version> + <groupId>com.gkhy</groupId> + <artifactId>expert</artifactId> + <version>3.8.8</version> - <name>ruoyi</name> - <url>http://www.ruoyi.vip</url> - <description>若依管理系统</description> + <name>expert</name> + <url>http://www.expert.vip</url> + <description>专家管理系统</description> <properties> - <ruoyi.version>3.8.2</ruoyi.version> + <expert.version>3.8.8</expert.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version> - <druid.version>1.2.8</druid.version> + <spring-boot.version>2.5.15</spring-boot.version> + <druid.version>1.2.23</druid.version> <bitwalker.version>1.21</bitwalker.version> <swagger.version>3.0.0</swagger.version> - <kaptcha.version>2.3.2</kaptcha.version> - <mybatis-spring-boot.version>2.2.2</mybatis-spring-boot.version> - <pagehelper.boot.version>1.4.1</pagehelper.boot.version> - <fastjson.version>2.0.4</fastjson.version> - <oshi.version>6.1.6</oshi.version> - <commons.io.version>2.11.0</commons.io.version> - <commons.fileupload.version>1.4</commons.fileupload.version> - <commons.collections.version>3.2.2</commons.collections.version> + <kaptcha.version>2.3.3</kaptcha.version> + <pagehelper.boot.version>1.4.7</pagehelper.boot.version> + <fastjson.version>2.0.53</fastjson.version> + <oshi.version>6.6.5</oshi.version> + <commons.io.version>2.13.0</commons.io.version> <poi.version>4.1.2</poi.version> <velocity.version>2.3</velocity.version> <jwt.version>0.9.1</jwt.version> + <mybatis-plus.version>3.5.1</mybatis-plus.version> + <!-- override dependency version --> + <tomcat.version>9.0.96</tomcat.version> + <logback.version>1.2.13</logback.version> + <spring-security.version>5.7.12</spring-security.version> + <spring-framework.version>5.3.39</spring-framework.version> + <hutool.version>5.8.9</hutool.version> </properties> - + <!-- 依赖声明 --> <dependencyManagement> <dependencies> + + <!-- 覆盖SpringFramework的依赖配置--> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-framework-bom</artifactId> + <version>${spring-framework.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + + <!-- 覆盖SpringSecurity的依赖配置--> + <dependency> + <groupId>org.springframework.security</groupId> + <artifactId>spring-security-bom</artifactId> + <version>${spring-security.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> <!-- SpringBoot的依赖配置--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> - <version>2.5.14</version> + <version>${spring-boot.version}</version> <type>pom</type> <scope>import</scope> + </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> + + <!-- 覆盖logback的依赖配置--> + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-core</artifactId> + <version>${logback.version}</version> + </dependency> + + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + <version>${logback.version}</version> + </dependency> + + <!-- 覆盖tomcat的依赖配置--> + <dependency> + <groupId>org.apache.tomcat.embed</groupId> + <artifactId>tomcat-embed-core</artifactId> + <version>${tomcat.version}</version> + </dependency> + + <dependency> + <groupId>org.apache.tomcat.embed</groupId> + <artifactId>tomcat-embed-el</artifactId> + <version>${tomcat.version}</version> + </dependency> + + <dependency> + <groupId>org.apache.tomcat.embed</groupId> + <artifactId>tomcat-embed-websocket</artifactId> + <version>${tomcat.version}</version> </dependency> <!-- 阿里数据库连接池 --> @@ -59,13 +125,6 @@ <groupId>eu.bitwalker</groupId> <artifactId>UserAgentUtils</artifactId> <version>${bitwalker.version}</version> - </dependency> - - <!-- SpringBoot集成mybatis框架 --> - <dependency> - <groupId>org.mybatis.spring.boot</groupId> - <artifactId>mybatis-spring-boot-starter</artifactId> - <version>${mybatis-spring-boot.version}</version> </dependency> <!-- pagehelper 分页插件 --> @@ -83,30 +142,23 @@ </dependency> <!-- Swagger3依赖 --> - <dependency> - <groupId>io.springfox</groupId> - <artifactId>springfox-boot-starter</artifactId> - <version>${swagger.version}</version> - <exclusions> - <exclusion> - <groupId>io.swagger</groupId> - <artifactId>swagger-models</artifactId> - </exclusion> - </exclusions> - </dependency> +<!-- <dependency>--> +<!-- <groupId>io.springfox</groupId>--> +<!-- <artifactId>springfox-boot-starter</artifactId>--> +<!-- <version>${swagger.version}</version>--> +<!-- <exclusions>--> +<!-- <exclusion>--> +<!-- <groupId>io.swagger</groupId>--> +<!-- <artifactId>swagger-models</artifactId>--> +<!-- </exclusion>--> +<!-- </exclusions>--> +<!-- </dependency>--> <!-- io常用工具类 --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons.io.version}</version> - </dependency> - - <!-- 文件上传工具类 --> - <dependency> - <groupId>commons-fileupload</groupId> - <artifactId>commons-fileupload</artifactId> - <version>${commons.fileupload.version}</version> </dependency> <!-- excel工具 --> @@ -121,13 +173,6 @@ <groupId>org.apache.velocity</groupId> <artifactId>velocity-engine-core</artifactId> <version>${velocity.version}</version> - </dependency> - - <!-- collections工具类 --> - <dependency> - <groupId>commons-collections</groupId> - <artifactId>commons-collections</artifactId> - <version>${commons.collections.version}</version> </dependency> <!-- 阿里JSON解析器 --> @@ -146,63 +191,62 @@ <!-- 验证码 --> <dependency> - <groupId>com.github.penggle</groupId> + <groupId>pro.fessional</groupId> <artifactId>kaptcha</artifactId> <version>${kaptcha.version}</version> </dependency> - <!-- 定时任务--> - <dependency> - <groupId>com.ruoyi</groupId> - <artifactId>ruoyi-quartz</artifactId> - <version>${ruoyi.version}</version> - </dependency> <!-- 代码生成--> <dependency> - <groupId>com.ruoyi</groupId> - <artifactId>ruoyi-generator</artifactId> - <version>${ruoyi.version}</version> + <groupId>com.gkhy</groupId> + <artifactId>expert-generator</artifactId> + <version>${expert.version}</version> </dependency> <!-- 核心模块--> <dependency> - <groupId>com.ruoyi</groupId> - <artifactId>ruoyi-framework</artifactId> - <version>${ruoyi.version}</version> + <groupId>com.gkhy</groupId> + <artifactId>expert-framework</artifactId> + <version>${expert.version}</version> </dependency> <!-- 系统模块--> <dependency> - <groupId>com.ruoyi</groupId> - <artifactId>ruoyi-system</artifactId> - <version>${ruoyi.version}</version> + <groupId>com.gkhy</groupId> + <artifactId>expert-system</artifactId> + <version>${expert.version}</version> </dependency> <!-- 通用工具--> <dependency> - <groupId>com.ruoyi</groupId> - <artifactId>ruoyi-common</artifactId> - <version>${ruoyi.version}</version> + <groupId>com.gkhy</groupId> + <artifactId>expert-common</artifactId> + <version>${expert.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>3.0.3</version> + </dependency> </dependencies> </dependencyManagement> <modules> - <module>ruoyi-admin</module> - <module>ruoyi-framework</module> - <module>ruoyi-system</module> - <module>ruoyi-quartz</module> - <module>ruoyi-generator</module> - <module>ruoyi-common</module> + <module>expert-admin</module> + <module>expert-framework</module> + <module>expert-system</module> + <module>expert-generator</module> + <module>expert-common</module> </modules> <packaging>pom</packaging> - - - <dependencies> - - </dependencies> <build> <plugins> -- Gitblit v1.9.2