From 6437bdc301a3738b3e6f3be9913a41a45d9f96d9 Mon Sep 17 00:00:00 2001 From: 青城 <1662047068@qq.com> Date: 星期四, 10 七月 2025 17:06:27 +0800 Subject: [PATCH] 协调审批 --- pom.xml | 80 ++++++++++++++++++++++++++++++++-------- 1 files changed, 64 insertions(+), 16 deletions(-) diff --git a/pom.xml b/pom.xml index 1e8d793..938ccdd 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ <groupId>com.ruoyi</groupId> <artifactId>ruoyi</artifactId> - <version>3.8.6</version> + <version>3.8.9</version> <packaging>jar</packaging> <name>ruoyi</name> @@ -24,18 +24,25 @@ <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> - <pagehelper.spring.boot.starter.version>1.4.6</pagehelper.spring.boot.starter.version> - <fastjson.version>2.0.43</fastjson.version> - <druid.version>1.2.16</druid.version> + <pagehelper.spring.boot.starter.version>1.4.7</pagehelper.spring.boot.starter.version> + <fastjson.version>2.0.53</fastjson.version> + <druid.version>1.2.23</druid.version> <commons.io.version>2.13.0</commons.io.version> - <commons.collections.version>3.2.2</commons.collections.version> <bitwalker.version>1.21</bitwalker.version> <jwt.version>0.9.1</jwt.version> <kaptcha.version>2.3.3</kaptcha.version> <swagger.version>3.0.0</swagger.version> - <poi.version>4.1.2</poi.version> - <oshi.version>6.4.6</oshi.version> + <poi.version>5.2.3</poi.version> + <oshi.version>6.6.5</oshi.version> <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> + <mybatis-plus.version>3.5.3.1</mybatis-plus.version> </properties> <dependencies> @@ -109,6 +116,20 @@ <groupId>com.alibaba</groupId> <artifactId>druid-spring-boot-starter</artifactId> <version>${druid.version}</version> + </dependency> + + <!--mybatis-plus--> + <dependency> + <groupId>com.baomidou</groupId> + <artifactId>mybatis-plus-boot-starter</artifactId> + <version>${mybatis-plus.version}</version> + </dependency> + + <!--mybatis-plus浠g爜鐢熸垚鍣�--> + <dependency> + <groupId>com.baomidou</groupId> + <artifactId>mybatis-plus-generator</artifactId> + <version>${mybatis-plus.version}</version> </dependency> <!-- 鑷畾涔夐獙璇佹敞瑙� --> @@ -204,13 +225,6 @@ <version>${velocity.version}</version> </dependency> - <!-- collections宸ュ叿绫� --> - <dependency> - <groupId>commons-collections</groupId> - <artifactId>commons-collections</artifactId> - <version>${commons.collections.version}</version> - </dependency> - <!-- 瀹氭椂浠诲姟 --> <dependency> <groupId>org.quartz-scheduler</groupId> @@ -235,8 +249,34 @@ </exclusion> </exclusions> </dependency> + <dependency> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + </dependency> - </dependencies> + + + <!-- 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> + + </dependencies> <build> <finalName>${project.artifactId}</finalName> @@ -248,7 +288,15 @@ <fork>true</fork> <!-- 濡傛灉娌℃湁璇ラ厤缃紝devtools涓嶄細鐢熸晥 --> </configuration> </plugin> - </plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>10</source> + <target>10</target> + </configuration> + </plugin> + </plugins> </build> <repositories> -- Gitblit v1.9.3