1
0
mirror of synced 2026-02-06 10:08:07 +08:00

🎨 #3844 【基础架构】将 httpclient4 依赖的 scope 从默认的 compile 改为 provided,以便让使用者可以更灵活地选择 HTTP 客户端实现

This commit is contained in:
buaazyl
2026-01-10 14:23:38 +08:00
committed by GitHub
parent e27325f580
commit 397bbe04c4
10 changed files with 66 additions and 6 deletions

View File

@@ -34,6 +34,14 @@
<artifactId>jodd-util</artifactId>
<version>6.1.0</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>