fix: 修复 maven 构建异常
diff --git a/bff/admin/pom.xml b/bff/admin/pom.xml
index d141279..11fca55 100644
--- a/bff/admin/pom.xml
+++ b/bff/admin/pom.xml
@@ -91,11 +91,14 @@
       <groupId>com.netflix.feign</groupId>
       <artifactId>feign-httpclient</artifactId>
     </dependency>
-
-    <!-- <dependency>
+    <dependency>
       <groupId>org.apache.httpcomponents</groupId>
       <artifactId>httpclient</artifactId>
-    </dependency> -->
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+    </dependency>
 
 
     <dependency>
diff --git a/common/core/pom.xml b/common/core/pom.xml
index b0a7e56..dcfe763 100644
--- a/common/core/pom.xml
+++ b/common/core/pom.xml
@@ -43,6 +43,16 @@
       <artifactId>feign-httpclient</artifactId>
       <optional>true</optional>
     </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+      <optional>true</optional>
+    </dependency>
     
     <dependency>
       <groupId>com.alibaba</groupId>