|
22 | 22 | <parent> |
23 | 23 | <groupId>org.springframework.boot</groupId> |
24 | 24 | <artifactId>spring-boot-starter-parent</artifactId> |
25 | | - <version>3.5.6</version> |
| 25 | + <version>3.5.7</version> |
26 | 26 | <relativePath/> |
27 | 27 | </parent> |
28 | 28 |
|
29 | 29 | <properties> |
30 | 30 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
31 | 31 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
32 | | - <java.version>21</java.version> |
| 32 | + <java.version>25</java.version> |
33 | 33 | <maven.compiler.source>${java.version}</maven.compiler.source> |
34 | 34 | <maven.compiler.target>${java.version}</maven.compiler.target> |
35 | 35 |
|
36 | 36 | <jsonwebtoken.version>0.13.0</jsonwebtoken.version> |
37 | | - <springdoc-openapi-starter-webmvc-ui.version>2.8.13</springdoc-openapi-starter-webmvc-ui.version> |
38 | | - <switcher-client.version>2.4.1</switcher-client.version> |
| 37 | + <springdoc-openapi-starter-webmvc-ui.version>2.8.14</springdoc-openapi-starter-webmvc-ui.version> |
| 38 | + <switcher-client.version>2.5.1</switcher-client.version> |
| 39 | + |
| 40 | + <maven-compiler-plugin.version>3.14.1</maven-compiler-plugin.version> |
39 | 41 | </properties> |
40 | 42 |
|
41 | 43 | <profiles> |
|
142 | 144 | <groupId>org.springframework.boot</groupId> |
143 | 145 | <artifactId>spring-boot-maven-plugin</artifactId> |
144 | 146 | </plugin> |
| 147 | + |
| 148 | + <plugin> |
| 149 | + <groupId>org.apache.maven.plugins</groupId> |
| 150 | + <artifactId>maven-compiler-plugin</artifactId> |
| 151 | + <version>${maven-compiler-plugin.version}</version> |
| 152 | + <configuration> |
| 153 | + <source>${java.version}</source> |
| 154 | + <target>${java.version}</target> |
| 155 | + <annotationProcessorPaths> |
| 156 | + <path> |
| 157 | + <groupId>org.projectlombok</groupId> |
| 158 | + <artifactId>lombok</artifactId> |
| 159 | + </path> |
| 160 | + </annotationProcessorPaths> |
| 161 | + </configuration> |
| 162 | + </plugin> |
145 | 163 | </plugins> |
146 | 164 | </build> |
147 | 165 | </project> |
0 commit comments