|
9 | 9 | </parent>
|
10 | 10 | <groupId>apijson.demo</groupId>
|
11 | 11 | <artifactId>apijsondemo-multidatasource-kafka</artifactId>
|
12 |
| - <version>7.0.3</version> |
| 12 | + <version>7.1.5</version> |
13 | 13 |
|
14 | 14 | <name>apijsondemo-multidatasource-kafka</name>
|
15 | 15 | <description>Demo project for testing APIJSON server based on SpringBoot</description>
|
16 | 16 |
|
17 | 17 | <properties>
|
18 | 18 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
19 | 19 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
| 20 | + <java.version>17</java.version> |
| 21 | + <maven.compiler.encoding>UTF-8</maven.compiler.encoding> |
| 22 | + <maven.compiler.source>17</maven.compiler.source> |
| 23 | + <maven.compiler.target>17</maven.compiler.target> |
20 | 24 | <commons-lang3.version>3.12.0</commons-lang3.version>
|
21 | 25 | <druid.version>1.1.16</druid.version>
|
22 | 26 | <mybatisplus.version>3.5.1</mybatisplus.version>
|
|
37 | 41 | <spring-context-support.version>5.3.18</spring-context-support.version>
|
38 | 42 | <spring-boot-configuration-processor.version>2.6.6</spring-boot-configuration-processor.version>
|
39 | 43 | <dynamic-datasource-spring-boot-starter.version>3.5.2</dynamic-datasource-spring-boot-starter.version>
|
40 |
| - <java.version>1.8</java.version> |
41 | 44 | <kafka.version>3.2.1</kafka.version>
|
42 | 45 | </properties>
|
43 | 46 |
|
|
46 | 49 | <dependency>
|
47 | 50 | <groupId>com.github.Tencent</groupId>
|
48 | 51 | <artifactId>APIJSON</artifactId>
|
49 |
| - <version>7.0.3</version> |
| 52 | + <version>7.1.0</version> |
50 | 53 | </dependency>
|
51 | 54 | <dependency>
|
52 | 55 | <groupId>com.github.APIJSON</groupId>
|
53 | 56 | <artifactId>apijson-framework</artifactId>
|
54 |
| - <version>7.0.3</version> |
| 57 | + <version>7.1.5</version> |
55 | 58 | </dependency>
|
56 | 59 |
|
57 | 60 | <!-- 需要用的数据库 JDBC 驱动 -->
|
|
62 | 65 | <dependency>
|
63 | 66 | <groupId>org.springframework.boot</groupId>
|
64 | 67 | <artifactId>spring-boot-starter-web</artifactId>
|
| 68 | + <version>2.5.13</version> |
65 | 69 | </dependency>
|
66 | 70 | <dependency>
|
67 | 71 | <groupId>org.springframework</groupId>
|
|
147 | 151 | <plugin>
|
148 | 152 | <groupId>org.springframework.boot</groupId>
|
149 | 153 | <artifactId>spring-boot-maven-plugin</artifactId>
|
| 154 | + <version>2.5.13</version> |
150 | 155 | <configuration>
|
151 | 156 | <fork>true</fork>
|
152 | 157 | <mainClass>apijson.demo.DemoApplication</mainClass>
|
|
162 | 167 | <plugin>
|
163 | 168 | <groupId>org.apache.maven.plugins</groupId>
|
164 | 169 | <artifactId>maven-compiler-plugin</artifactId>
|
| 170 | + <version>3.8.1</version> |
165 | 171 | <configuration>
|
166 |
| - <source>1.8</source> |
167 |
| - <target>1.8</target> |
| 172 | + <source>17</source> |
| 173 | + <target>17</target> |
168 | 174 | </configuration>
|
169 | 175 | </plugin>
|
170 | 176 | </plugins>
|
|
0 commit comments