From 217970e78188737cb560fd364a3ef2969687271f Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Thu, 22 Sep 2022 17:40:13 +0800 Subject: [PATCH] 20220902 --- pom.xml | 37 +++++++++++++++++++++++++++++++++++++ 1 files changed, 37 insertions(+), 0 deletions(-) diff --git a/pom.xml b/pom.xml index 6a367e2..782a844 100644 --- a/pom.xml +++ b/pom.xml @@ -39,6 +39,17 @@ <version>${hutool.version}</version> </dependency> + <dependency> + <groupId>commons-httpclient</groupId> + <artifactId>commons-httpclient</artifactId> + <version>3.1</version> + </dependency> + <dependency> + <groupId>com.thoughtworks.xstream</groupId> + <artifactId>xstream</artifactId> + <version>1.4.11.1</version> + </dependency> + <!-- Spring系列 --> <dependency> <groupId>org.springframework.boot</groupId> @@ -291,6 +302,32 @@ </exclusion> </exclusions> </dependency> + + <!--excel读取 --> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-csv</artifactId> + <version>1.5</version> + </dependency> + + <dependency> + <groupId>org.apache.poi</groupId> + <artifactId>poi-ooxml</artifactId> + <version>3.8</version> + </dependency> + + <dependency> + <groupId>org.apache.poi</groupId> + <artifactId>poi</artifactId> + <version>3.8</version> + </dependency> + + <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml-schemas --> + <dependency> + <groupId>org.apache.poi</groupId> + <artifactId>poi-ooxml-schemas</artifactId> + <version>3.8</version> + </dependency> </dependencies> <build> -- Gitblit v1.9.1