From e310ec109ca26173730587e5ff1d16f736f73f52 Mon Sep 17 00:00:00 2001 From: zhuo <2089219845@qq.com> Date: 星期四, 13 二月 2025 11:59:24 +0800 Subject: [PATCH] 添加mybatis-plus和minio --- pom.xml | 85 +++++++++++++++++++++++++++++++++++++++++- 1 files changed, 82 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 1a1454f..1e1daae 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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.9</version> @@ -11,7 +11,7 @@ <name>ruoyi</name> <url>http://www.ruoyi.vip</url> <description>鑻ヤ緷绠$悊绯荤粺</description> - + <properties> <ruoyi.version>3.8.9</ruoyi.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> @@ -35,6 +35,13 @@ <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> + <freemarker.version>2.3.30</freemarker.version> + <knife4j-spring-ui.version>3.0.3</knife4j-spring-ui.version> + <core.version>3.4.1</core.version> + <javase.version>3.4.1</javase.version> + <minio.version>8.4.3</minio.version> + <okhttp.version>4.9.0</okhttp.version> </properties> <!-- 渚濊禆澹版槑 --> @@ -218,8 +225,80 @@ <version>${ruoyi.version}</version> </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> </dependencies> </dependencyManagement> + + <!-- 鍏ㄥ眬寮曞叆 --> + <dependencies> + <dependency> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + <scope>provided</scope> + </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> + + <dependency> + <groupId>org.freemarker</groupId> + <artifactId>freemarker</artifactId> + <version>${freemarker.version}</version> + </dependency> + + <!-- Swagger3渚濊禆 --> + <dependency> + <groupId>io.springfox</groupId> + <artifactId>springfox-boot-starter</artifactId> + <version>${swagger.version}</version> + </dependency> + + <!--Swagger3-Ui缇庡寲--> + <dependency> + <groupId>com.github.xiaoymin</groupId> + <artifactId>knife4j-spring-ui</artifactId> + <version>${knife4j-spring-ui.version}</version> + </dependency> + <dependency> + <groupId>com.google.zxing</groupId> + <artifactId>core</artifactId> + <version>${core.version}</version> <!-- 鎴栬�呮洿楂樼増鏈� --> + </dependency> + <dependency> + <groupId>com.google.zxing</groupId> + <artifactId>javase</artifactId> + <version>${javase.version}</version> <!-- 鎴栬�呮洿楂樼増鏈� --> + </dependency> + </dependencies> <modules> <module>ruoyi-admin</module> @@ -271,4 +350,4 @@ </pluginRepository> </pluginRepositories> -</project> \ No newline at end of file +</project> -- Gitblit v1.9.3