|
5 | 5 |
|
6 | 6 | <groupId>apijson.framework</groupId> |
7 | 7 | <artifactId>apijson-framework</artifactId> |
8 | | - <version>6.3.0</version> |
| 8 | + <version>6.4.3-springboot-3</version> |
9 | 9 | <packaging>jar</packaging> |
10 | 10 |
|
11 | 11 | <name>APIJSONFramework</name> |
|
14 | 14 | <properties> |
15 | 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
16 | 16 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
17 | | - <java.version>1.8</java.version> |
| 17 | + <java.version>17</java.version> |
| 18 | + <maven.compiler.encoding>UTF-8</maven.compiler.encoding> |
| 19 | + <maven.compiler.source>17</maven.compiler.source> |
| 20 | + <maven.compiler.target>17</maven.compiler.target> |
18 | 21 | </properties> |
19 | 22 |
|
20 | 23 | <dependencies> |
21 | 24 | <dependency> |
22 | | - <groupId>javax.servlet</groupId> |
23 | | - <artifactId>javax.servlet-api</artifactId> |
24 | | - <version>4.0.1</version> |
| 25 | + <groupId>jakarta.servlet</groupId> |
| 26 | + <artifactId>jakarta.servlet-api</artifactId> |
| 27 | + <version>6.0.0</version> |
| 28 | + <scope>provided</scope> |
25 | 29 | </dependency> |
26 | 30 |
|
27 | 31 | <dependency> |
|
34 | 38 | <dependency> |
35 | 39 | <groupId>com.github.Tencent</groupId> |
36 | 40 | <artifactId>APIJSON</artifactId> |
37 | | - <version>6.3.0</version> |
| 41 | + <version>6.4.3-springboot3</version> |
38 | 42 | </dependency> |
39 | 43 | <dependency> |
40 | 44 | <groupId>com.github.APIJSON</groupId> |
41 | 45 | <artifactId>apijson-column</artifactId> |
42 | | - <version>1.8.0</version> |
| 46 | + <version>1.9.3-springboot3</version> |
43 | 47 | </dependency> |
44 | 48 |
|
45 | 49 | <!-- 数据库 JDBC 驱动 <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< --> |
|
51 | 55 | <dependency> |
52 | 56 | <groupId>org.postgresql</groupId> |
53 | 57 | <artifactId>postgresql</artifactId> |
54 | | - <version>42.3.8</version> |
| 58 | + <version>42.7.2</version> |
55 | 59 | </dependency> |
56 | 60 | <!-- 数据库 JDBC 驱动 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> --> |
57 | 61 |
|
|
76 | 80 | <plugin> |
77 | 81 | <groupId>org.apache.maven.plugins</groupId> |
78 | 82 | <artifactId>maven-compiler-plugin</artifactId> |
79 | | - <version>3.8.1</version> |
| 83 | + <version>3.12.1</version> |
80 | 84 | <configuration> |
81 | | - <source>1.8</source> |
82 | | - <target>1.8</target> |
| 85 | + <source>17</source> |
| 86 | + <target>17</target> |
83 | 87 | </configuration> |
84 | 88 | </plugin> |
85 | 89 | </plugins> |
|
0 commit comments