This commit is contained in:
Looly
2023-04-01 01:04:54 +08:00
parent 470e5415f0
commit f0fb98c584
24 changed files with 457 additions and 462 deletions

View File

@@ -50,6 +50,21 @@
<scope>provided</scope>
</dependency>
<!-- Servlet -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<!-- 版本固定5.0.0可以支持jdk8 -->
<version>5.0.0</version>
<optional>true</optional>
</dependency>
<!-- 第三方HTTP客户端库 -->
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>