From 2b1a74f4faa5a00a294bdc6a6d956c2e009cf467 Mon Sep 17 00:00:00 2001
From: lin <sbla5888@163.com>
Date: Tue, 16 Apr 2024 15:32:09 +0800
Subject: [PATCH] 管理员过滤文章
---
pom.xml | 41 ++++++++++++++++++++++++++++++++++++++++-
1 files changed, 40 insertions(+), 1 deletions(-)
diff --git a/pom.xml b/pom.xml
index b3ea7f4..682985a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -257,7 +257,46 @@
<artifactId>tess4j</artifactId>
<version>4.5.4</version>
</dependency>
-
+ <!--压缩图片-->
+ <dependency>
+ <groupId>net.coobird</groupId>
+ <artifactId>thumbnailator</artifactId>
+ <version>0.4.8</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ </dependency>
+ <!-- ElasticSearch -->
+<!-- <dependency>-->
+<!-- <groupId>org.springframework.boot</groupId>-->
+<!-- <artifactId>spring-boot-starter-data-elasticsearch</artifactId>-->
+<!-- <version>2.7.1</version>-->
+<!-- </dependency>-->
+ <!--导入了elasticsearch -->
+ <dependency>
+ <groupId>org.elasticsearch.client</groupId>
+ <artifactId>elasticsearch-rest-high-level-client</artifactId>
+ <version>7.17.4</version>
+ <!-- <version>6.7.2</version>-->
+ <exclusions>
+ <exclusion>
+ <artifactId>elasticsearch</artifactId>
+ <groupId>org.elasticsearch</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.elasticsearch</groupId>
+ <artifactId>elasticsearch</artifactId>
+ <version>7.17.4</version>
+<!-- <version>6.7.2</version>-->
+ </dependency>
+ <dependency>
+ <groupId>com.alibaba</groupId>
+ <artifactId>druid</artifactId>
+ <scope>provided</scope>
+ </dependency>
</dependencies>
<build>
--
Gitblit v1.9.3