|
13 | 13 | --> |
14 | 14 |
|
15 | 15 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
16 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 16 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
17 | 17 | <modelVersion>4.0.0</modelVersion> |
18 | 18 | <parent> |
19 | 19 | <groupId>org.springframework.boot</groupId> |
20 | 20 | <artifactId>spring-boot-starter-parent</artifactId> |
21 | | - <version>2.6.4</version> |
| 21 | + <version>3.5.4</version> |
22 | 22 | <relativePath/> |
23 | 23 | </parent> |
24 | 24 | <groupId>org.kpax</groupId> |
25 | 25 | <artifactId>winfoom</artifactId> |
26 | | - <version>4.0.3</version> |
| 26 | + <version>4.0.4</version> |
27 | 27 |
|
28 | 28 | <name>winfoom</name> |
29 | 29 | <url>https://github.com/ecovaci/winfoom</url> |
30 | 30 |
|
31 | 31 | <properties> |
32 | 32 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
33 | | - <java.version>11</java.version> |
34 | | - <httpclient.version>4.5.13</httpclient.version> |
35 | | - <commons-configuration2.version>2.7</commons-configuration2.version> |
36 | | - <commons-io.version>2.11.0</commons-io.version> |
| 33 | + <java.version>17</java.version> |
| 34 | + <httpclient.version>4.5.14</httpclient.version> |
| 35 | + <commons-configuration2.version>2.12.0</commons-configuration2.version> |
| 36 | + <commons-io.version>2.14.0</commons-io.version> |
37 | 37 | <commons-beanutils.version>1.9.4</commons-beanutils.version> |
38 | 38 | <ipaddress.version>5.3.3</ipaddress.version> |
39 | 39 | <cache2k.version>2.6.1.Final</cache2k.version> |
|
42 | 42 | <mock-server.version>5.9.0</mock-server.version> |
43 | 43 | <littleproxy.version>1.1.2</littleproxy.version> |
44 | 44 | <mockserver-netty.version>5.10.0</mockserver-netty.version> |
45 | | - <lombok.version>1.18.20</lombok.version> |
46 | | - <assertj.version>3.20.2</assertj.version> |
| 45 | + <lombok.version>1.18.30</lombok.version> |
47 | 46 | <log4j-jcl.version>2.17.2</log4j-jcl.version> |
48 | 47 | </properties> |
49 | 48 |
|
|
151 | 150 | <scope>test</scope> |
152 | 151 | </dependency> |
153 | 152 |
|
154 | | - <!-- https://mvnrepository.com/artifact/org.assertj/assertj-core --> |
155 | 153 | <dependency> |
156 | 154 | <groupId>org.assertj</groupId> |
157 | 155 | <artifactId>assertj-core</artifactId> |
158 | | - <version>${assertj.version}</version> |
159 | 156 | <scope>test</scope> |
160 | 157 | </dependency> |
161 | 158 |
|
|
185 | 182 | <build> |
186 | 183 | <finalName>winfoom</finalName> |
187 | 184 | <plugins> |
| 185 | + <plugin> |
| 186 | + <groupId>org.apache.maven.plugins</groupId> |
| 187 | + <artifactId>maven-compiler-plugin</artifactId> |
| 188 | + <configuration> |
| 189 | + <annotationProcessorPaths> |
| 190 | + <path> |
| 191 | + <groupId>org.projectlombok</groupId> |
| 192 | + <artifactId>lombok</artifactId> |
| 193 | + </path> |
| 194 | + </annotationProcessorPaths> |
| 195 | + </configuration> |
| 196 | + </plugin> |
188 | 197 | <plugin> |
189 | 198 | <groupId>org.springframework.boot</groupId> |
190 | 199 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 200 | + <configuration> |
| 201 | + <excludes> |
| 202 | + <exclude> |
| 203 | + <groupId>org.projectlombok</groupId> |
| 204 | + <artifactId>lombok</artifactId> |
| 205 | + </exclude> |
| 206 | + </excludes> |
| 207 | + </configuration> |
191 | 208 | </plugin> |
192 | 209 | <plugin> |
193 | 210 | <groupId>org.apache.maven.plugins</groupId> |
|
0 commit comments