From 8af9b52e63967575713d77ad23b43d29d9826dc7 Mon Sep 17 00:00:00 2001 From: chenjiahe <763432473@qq.com> Date: 星期五, 17 六月 2022 10:56:20 +0800 Subject: [PATCH] 新增启动项注解-redis --- pom.xml | 36 +++++++++++++++++++++++++++++++++++- 1 files changed, 35 insertions(+), 1 deletions(-) diff --git a/pom.xml b/pom.xml index 7601292..03e7429 100644 --- a/pom.xml +++ b/pom.xml @@ -21,6 +21,17 @@ <artifactId>jaxb-api</artifactId> </dependency> + <dependency> + <groupId>org.apache.poi</groupId> + <artifactId>poi-ooxml</artifactId> + <version>3.9</version> + <exclusions> + <exclusion> + <artifactId>dom4j</artifactId> + <groupId>dom4j</groupId> + </exclusion> + </exclusions> + </dependency> <!--鑵捐浜� cos--> <dependency> @@ -43,6 +54,11 @@ <dependency> <groupId>com.aliyun.oss</groupId> <artifactId>aliyun-sdk-oss</artifactId> + </dependency> + + <dependency> + <groupId>com.huaweicloud</groupId> + <artifactId>esdk-obs-java</artifactId> </dependency> <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on --> @@ -123,6 +139,12 @@ <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> + </dependency> + + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-tomcat</artifactId> + <!--<scope>provided</scope>--> </dependency> <!-- mybatis鑷姩鐢熸垚 --> @@ -256,10 +278,22 @@ <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> </dependency> + + <dependency> + <groupId>com.dtflys.forest</groupId> + <artifactId>spring-boot-starter-forest</artifactId> + <version>1.5.0-RC2</version> + </dependency> + + <!-- redis --> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-data-redis</artifactId> + </dependency> </dependencies> <build> - <finalName>hx-demoboot</finalName> + <finalName>hx-common</finalName> <resources> <resource> <directory>src/main/java</directory> -- Gitblit v1.8.0