|
5 | 5 | <groupId>apijson.demo</groupId>
|
6 | 6 | <artifactId>apijson-demo-druid-rawSQL</artifactId>
|
7 | 7 | <packaging>jar</packaging>
|
8 |
| - <version>7.0.3</version> |
| 8 | + <version>7.1.5</version> |
9 | 9 |
|
10 | 10 | <name>APIJSONDemo-Druid</name>
|
11 | 11 | <description>Demo project for Testing APIJSON Server based on SpringBoot</description>
|
12 | 12 |
|
13 | 13 | <properties>
|
14 | 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
15 | 15 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
16 |
| - <java.version>1.8</java.version> |
| 16 | + <java.version>17</java.version> |
| 17 | + <maven.compiler.encoding>UTF-8</maven.compiler.encoding> |
| 18 | + <maven.compiler.source>17</maven.compiler.source> |
| 19 | + <maven.compiler.target>17</maven.compiler.target> |
17 | 20 | </properties>
|
18 | 21 |
|
19 | 22 | <dependencies>
|
20 | 23 | <!-- 需要的 APIJSON 相关依赖 -->
|
21 | 24 | <dependency>
|
22 | 25 | <groupId>com.github.Tencent</groupId>
|
23 | 26 | <artifactId>APIJSON</artifactId>
|
24 |
| - <version>7.0.3</version> |
| 27 | + <version>7.1.0</version> |
25 | 28 | </dependency>
|
26 | 29 | <dependency>
|
27 | 30 | <groupId>com.github.APIJSON</groupId>
|
28 | 31 | <artifactId>apijson-framework</artifactId>
|
29 |
| - <version>7.0.3</version> |
| 32 | + <version>7.1.5</version> |
30 | 33 | </dependency>
|
31 | 34 | <dependency>
|
32 | 35 | <groupId>com.github.APIJSON</groupId>
|
33 | 36 | <artifactId>apijson-router</artifactId>
|
34 |
| - <version>2.0.3</version> |
| 37 | + <version>2.1.5</version> |
35 | 38 | </dependency>
|
36 | 39 |
|
37 | 40 | <!-- 需要用的数据库 JDBC 驱动 -->
|
|
82 | 85 | <artifactId>maven-compiler-plugin</artifactId>
|
83 | 86 | <version>3.8.1</version>
|
84 | 87 | <configuration>
|
85 |
| - <source>1.8</source> |
86 |
| - <target>1.8</target> |
| 88 | + <source>17</source> |
| 89 | + <target>17</target> |
87 | 90 | </configuration>
|
88 | 91 | </plugin>
|
89 | 92 | </plugins>
|
|
0 commit comments