From 829c76dea23a7c9344590be797fd9d5fe70cff38 Mon Sep 17 00:00:00 2001
From: wl <173@qq.com>
Date: 星期二, 27 九月 2022 09:33:25 +0800
Subject: [PATCH] 修改接口参数
---
pom.xml | 42 ++++++++++++++++++++++++++++++++----------
1 files changed, 32 insertions(+), 10 deletions(-)
diff --git a/pom.xml b/pom.xml
index 0ae9a78..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>
@@ -11,7 +23,7 @@
<groupId>com.ycl</groupId>
<artifactId>ycl-server</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.0.0</version>
<name>ycl-server</name>
<description>鐖舵ā鍧�</description>
@@ -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>
@@ -149,15 +168,18 @@
<artifactId>jaxb-api</artifactId>
<version>${jaxb-api.version}</version>
</dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
+ <dependency>
+ <groupId>com.alibaba</groupId>
+ <artifactId>easyexcel</artifactId>
+ <version>3.1.1</version>
+ </dependency>
+
+ <dependency>
+ <groupId>com.alibaba</groupId>
+ <artifactId>fastjson</artifactId>
+ <version>1.2.73</version>
+ </dependency>
+ </dependencies>
</project>
--
Gitblit v1.8.0