更换API请求框架

master
DongZeLiang 2023-08-21 11:20:25 +08:00
parent 818f36aff6
commit e454f3e404
1 changed files with 9 additions and 4 deletions

13
pom.xml
View File

@ -12,6 +12,8 @@
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<forest.version>1.5.32</forest.version>
<fastjson2.version>2.0.38</fastjson2.version>
</properties>
<parent>
@ -36,16 +38,19 @@
<artifactId>lombok</artifactId>
</dependency>
<!-- Json框架 -->
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>2.0.38</version>
<version>${fastjson2.version}</version>
</dependency>
<!-- API 请求框架 -->
<dependency>
<groupId>com.github.wechatpay-apiv3</groupId>
<artifactId>wechatpay-apache-httpclient</artifactId>
<version>0.4.9</version>
<groupId>com.dtflys.forest</groupId>
<artifactId>forest-spring-boot-starter</artifactId>
<version>${forest.version}</version>
</dependency>
</dependencies>
</project>