Skip to content

Commit

Permalink
添加httpcore和httpclient的依赖定义。因为springboot3.1.x的spring-boot-dependencies…
Browse files Browse the repository at this point in the history
…里,已经将httpclient:4.x的依赖定义移除了。
  • Loading branch information
wangliang181230 committed Sep 15, 2023
1 parent c216d85 commit b404be9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@
<netty.version>4.1.86.Final</netty.version>
<snakeyaml.version>2.0</snakeyaml.version>
<sofa.hessian.version>4.0.3</sofa.hessian.version>
<httpcore.version>4.4.16</httpcore.version>
<httpclient.version>4.5.14</httpclient.version>

<protobuf.version>3.16.3</protobuf.version>
<grpc.version>1.27.1</grpc.version>
Expand Down Expand Up @@ -170,6 +172,16 @@
<artifactId>hessian</artifactId>
<version>${sofa.hessian.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>${httpcore.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${httpclient.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
Expand Down

0 comments on commit b404be9

Please sign in to comment.