From 4ac7a1aa1fe3abc3d59b8ce1d417f2bc8ad215d4 Mon Sep 17 00:00:00 2001 From: RuoYi <yzz_ivy@163.com> Date: 星期二, 15 八月 2023 11:31:38 +0800 Subject: [PATCH] 升级commons.io到最新版本2.13.0 --- ruoyi-common/pom.xml | 27 +++++++++++++++++---------- 1 files changed, 17 insertions(+), 10 deletions(-) diff --git a/ruoyi-common/pom.xml b/ruoyi-common/pom.xml index eb84d30..35e34b7 100644 --- a/ruoyi-common/pom.xml +++ b/ruoyi-common/pom.xml @@ -5,7 +5,7 @@ <parent> <artifactId>ruoyi</artifactId> <groupId>com.ruoyi</groupId> - <version>3.7.0</version> + <version>3.8.6</version> </parent> <modelVersion>4.0.0</modelVersion> @@ -58,23 +58,24 @@ <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> + + <!-- 动态数据源 --> + <dependency> + <groupId>com.baomidou</groupId> + <artifactId>dynamic-datasource-spring-boot-starter</artifactId> + <version>3.5.2</version> + </dependency> <!-- 阿里JSON解析器 --> <dependency> - <groupId>com.alibaba</groupId> - <artifactId>fastjson</artifactId> + <groupId>com.alibaba.fastjson2</groupId> + <artifactId>fastjson2</artifactId> </dependency> <!-- io常用工具类 --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> - </dependency> - - <!-- 文件上传工具类 --> - <dependency> - <groupId>commons-fileupload</groupId> - <artifactId>commons-fileupload</artifactId> </dependency> <!-- excel工具 --> @@ -89,12 +90,18 @@ <artifactId>snakeyaml</artifactId> </dependency> - <!--Token生成与解析--> + <!-- Token生成与解析--> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt</artifactId> </dependency> + <!-- Jaxb --> + <dependency> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + </dependency> + <!-- redis 缓存操作 --> <dependency> <groupId>org.springframework.boot</groupId> -- Gitblit v1.9.2