Skip to content

Commit 8d71ced

Browse files
committed
JDK 从 17 降为 1.8, 升级 apijson-framework 7.1.7, jakarta.servlet-api 从基于 JDK 11 的 6.0.0 改为基于 JDK 8 的 5.0.0,升级自身 2.1.7
1 parent 7f024d4 commit 8d71ced

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

pom.xml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>apijson.router</groupId>
77
<artifactId>apijson-router</artifactId>
8-
<version>2.1.5</version>
8+
<version>2.1.7</version>
99
<packaging>jar</packaging>
1010

1111
<name>APIJSONRouter</name>
@@ -14,18 +14,16 @@
1414
<properties>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1616
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
17-
<java.version>17</java.version>
17+
<java.version>1.8</java.version>
1818
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
19-
<maven.compiler.source>17</maven.compiler.source>
20-
<maven.compiler.target>17</maven.compiler.target>
2119
</properties>
2220

2321
<dependencies>
2422
<!-- JDK 17+, SpringBoot 3.0+ -->
2523
<dependency>
2624
<groupId>jakarta.servlet</groupId>
2725
<artifactId>jakarta.servlet-api</artifactId>
28-
<version>6.0.0</version>
26+
<version>5.0.0</version>
2927
<scope>provided</scope>
3028
</dependency>
3129

@@ -34,6 +32,7 @@
3432
<groupId>javax.servlet</groupId>
3533
<artifactId>javax.servlet-api</artifactId>
3634
<version>4.0.1</version>
35+
<scope>provided</scope>
3736
</dependency>
3837

3938
<dependency>
@@ -46,12 +45,12 @@
4645
<dependency>
4746
<groupId>com.github.Tencent</groupId>
4847
<artifactId>APIJSON</artifactId>
49-
<version>7.1.0</version>
48+
<version>7.5.5</version>
5049
</dependency>
5150
<dependency>
5251
<groupId>com.github.APIJSON</groupId>
5352
<artifactId>apijson-framework</artifactId>
54-
<version>7.1.5</version>
53+
<version>7.1.7</version>
5554
</dependency>
5655
</dependencies>
5756

@@ -62,8 +61,8 @@
6261
<artifactId>maven-compiler-plugin</artifactId>
6362
<version>3.12.1</version>
6463
<configuration>
65-
<source>17</source>
66-
<target>17</target>
64+
<source>1.8</source>
65+
<target>1.8</target>
6766
</configuration>
6867
</plugin>
6968
</plugins>

0 commit comments

Comments
 (0)