From 9194cb195ff36e74b2c4f4445f27bd2616b26217 Mon Sep 17 00:00:00 2001 From: zouyu <2723363702@qq.com> Date: 星期三, 13 八月 2025 16:13:01 +0800 Subject: [PATCH] 浪潮对接单点登录:开通接口报错问题修复 --- pom.xml | 46 ++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 44 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index ae85289..6a0e071 100644 --- a/pom.xml +++ b/pom.xml @@ -37,6 +37,8 @@ <velocity.version>2.3</velocity.version> <!-- override dependency version --> <tomcat.version>9.0.102</tomcat.version> + <minio.version>8.4.3</minio.version> + <okhttp.version>4.9.0</okhttp.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> @@ -44,6 +46,17 @@ </properties> <dependencies> + <dependency> + <groupId>cn.hutool</groupId> + <artifactId>hutool-all</artifactId> + <version>5.8.18</version> + </dependency> + <!-- ruoyi-springboot2 / swagger knife4j 閰嶇疆 --> + <dependency> + <groupId>com.github.xiaoymin</groupId> + <artifactId>knife4j-spring-boot-starter</artifactId> + <version>3.0.3</version> + </dependency> <!-- SpringBoot 鏍稿績鍖� --> <dependency> @@ -216,6 +229,7 @@ <version>${poi.version}</version> </dependency> + <!-- velocity浠g爜鐢熸垚浣跨敤妯℃澘 --> <dependency> <groupId>org.apache.velocity</groupId> @@ -252,6 +266,34 @@ <artifactId>lombok</artifactId> </dependency> + + + <!-- minio --> + <dependency> + <groupId>io.minio</groupId> + <artifactId>minio</artifactId> + <version>${minio.version}</version> + <exclusions> + <exclusion> + <groupId>com.squareup.okhttp3</groupId> + <artifactId>okhttp</artifactId> + </exclusion> + </exclusions> + </dependency> + + <!-- minio渚濊禆okhttp 涓嶇劧鎶ラ敊 --> + <dependency> + <groupId>com.squareup.okhttp3</groupId> + <artifactId>okhttp</artifactId> + <version>${okhttp.version}</version> + </dependency> + + <dependency> + <groupId>com.deepoove</groupId> + <artifactId>poi-tl</artifactId> + <version>1.12.2</version> + </dependency> + </dependencies> <build> @@ -264,7 +306,7 @@ <fork>true</fork> <!-- 濡傛灉娌℃湁璇ラ厤缃紝devtools涓嶄細鐢熸晥 --> </configuration> </plugin> - </plugins> + </plugins> </build> <repositories> @@ -292,4 +334,4 @@ </pluginRepository> </pluginRepositories> -</project> \ No newline at end of file +</project> -- Gitblit v1.9.3