From 1c9d913d9974f0feb7c5756a665fcd08f22ee4b3 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期五, 06 十月 2023 14:16:29 +0800 Subject: [PATCH] 添加 批量更新企业坐标 接口 --- pom.xml | 46 ++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 44 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index cfb4acd..883ed4b 100644 --- a/pom.xml +++ b/pom.xml @@ -10,12 +10,15 @@ </parent> <groupId>com.smartearth</groupId> <artifactId>poiExcel</artifactId> - <version>0.0.1-SNAPSHOT</version> + <version>0.2</version> <name>poiExcel</name> + <packaging>jar</packaging> <description>poiExcel</description> + <properties> <java.version>1.8</java.version> </properties> + <dependencies> <dependency> <groupId>org.springframework.boot</groupId> @@ -111,12 +114,51 @@ <artifactId>cglib</artifactId> <version>3.1</version> </dependency> - <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> + + <!--mybatis-plus--> + <dependency> + <groupId>com.baomidou</groupId> + <artifactId>mybatis-plus-boot-starter</artifactId> + <version>3.5.1</version> + </dependency> + <!--druid--> + <dependency> + <groupId>com.alibaba</groupId> + <artifactId>druid</artifactId> + <version>1.1.22</version> + </dependency> + <dependency> + <groupId>com.alibaba</groupId> + <artifactId>druid-spring-boot-starter</artifactId> + <version>1.1.22</version> + </dependency> + <!--mysql--> + <dependency> + <groupId>mysql</groupId> + <artifactId>mysql-connector-java</artifactId> + <version>8.0.21</version> + </dependency> + <!--jdbc--> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-jdbc</artifactId> + </dependency> + <!--httpclient--> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + </dependency> + <!--fast-md5--> + <dependency> + <groupId>com.joyent.util</groupId> + <artifactId>fast-md5</artifactId> + <version>2.7.1</version> + </dependency> </dependencies> <build> -- Gitblit v1.9.3