From fa10620c874c944f4b37ce15a6782d3d08d2a8da Mon Sep 17 00:00:00 2001 From: zhanghua <314079846@qq.com> Date: 星期六, 10 九月 2022 21:29:35 +0800 Subject: [PATCH] 文件上传接口 --- pom.xml | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/pom.xml b/pom.xml index 747e79a..6e96dda 100644 --- a/pom.xml +++ b/pom.xml @@ -2,6 +2,18 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>16</source> + <target>16</target> + </configuration> + </plugin> + </plugins> + </build> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> @@ -101,6 +113,13 @@ <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> + <!-- https://mvnrepository.com/artifact/com.github.tobato/fastdfs-client --> + <dependency> + <groupId>com.github.tobato</groupId> + <artifactId>fastdfs-client</artifactId> + <version>1.27.2</version> + </dependency> + <!--Hutool Java宸ュ叿鍖�--> <dependency> <groupId>cn.hutool</groupId> -- Gitblit v1.8.0