|
6 | 6 | <groupId>apijson.demo</groupId>
|
7 | 7 | <artifactId>apijson-demo-druid</artifactId>
|
8 | 8 | <packaging>jar</packaging>
|
9 |
| - <version>7.0.3</version> |
| 9 | + <version>7.1.5</version> |
10 | 10 |
|
11 | 11 | <name>APIJSONDemo-Druid</name>
|
12 | 12 | <description>Demo project for Testing APIJSON Server based on SpringBoot</description>
|
13 | 13 |
|
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 | <!-- 需要的 APIJSON 相关依赖 -->
|
22 | 25 | <dependency>
|
23 | 26 | <groupId>com.github.Tencent</groupId>
|
24 | 27 | <artifactId>APIJSON</artifactId>
|
25 |
| - <version>7.0.3</version> |
| 28 | + <version>7.1.0</version> |
26 | 29 | </dependency>
|
27 | 30 | <dependency>
|
28 | 31 | <groupId>com.github.APIJSON</groupId>
|
29 | 32 | <artifactId>apijson-framework</artifactId>
|
30 |
| - <version>7.0.3</version> |
| 33 | + <version>7.1.5</version> |
31 | 34 | </dependency>
|
32 | 35 |
|
33 | 36 | <!-- 需要用的数据库 JDBC 驱动 -->
|
|
64 | 67 | <plugin>
|
65 | 68 | <groupId>org.springframework.boot</groupId>
|
66 | 69 | <artifactId>spring-boot-maven-plugin</artifactId>
|
| 70 | + <version>2.5.13</version> |
67 | 71 | <executions>
|
68 | 72 | <execution>
|
69 | 73 | <goals>
|
|
75 | 79 | <plugin>
|
76 | 80 | <groupId>org.apache.maven.plugins</groupId>
|
77 | 81 | <artifactId>maven-compiler-plugin</artifactId>
|
| 82 | + <version>3.8.1</version> |
78 | 83 | <configuration>
|
79 |
| - <source>1.8</source> |
80 |
| - <target>1.8</target> |
| 84 | + <source>17</source> |
| 85 | + <target>17</target> |
81 | 86 | </configuration>
|
82 | 87 | </plugin>
|
83 | 88 | </plugins>
|
|
0 commit comments