|
36 | 36 |
|
37 | 37 | <properties> |
38 | 38 |
|
39 | | - <java.version>11</java.version> |
| 39 | + <java.version>17</java.version> |
40 | 40 | <maven.compiler.source>${java.version}</maven.compiler.source> |
41 | 41 | <maven.compiler.target>${java.version}</maven.compiler.target> |
42 | 42 | <!-- to prevent message: system modules path not set in conjunction with -source 11 --> |
|
67 | 67 | <!-- <sonarpython.version>5.4.0.22255</sonarpython.version>--> |
68 | 68 |
|
69 | 69 | <mockito.version>5.17.0</mockito.version> |
| 70 | + <lombok.version>1.18.38</lombok.version> |
70 | 71 |
|
71 | 72 | <!-- temporary version waiting for a real automatic release in creedengo repository --> |
72 | 73 | <creedengo-rules-specifications.version>2.2.2</creedengo-rules-specifications.version> |
|
77 | 78 | <test-it.sonarqube.keepRunning>false</test-it.sonarqube.keepRunning> |
78 | 79 |
|
79 | 80 | <!-- Version of `sonarqube` used by integration tests (you can override this value to perform matrix compatibility tests) --> |
80 | | - <test-it.sonarqube.version>25.5.0.107428</test-it.sonarqube.version> |
| 81 | + <test-it.sonarqube.version>25.5.0.107428</test-it.sonarqube.version> |
81 | 82 |
|
82 | 83 | <!-- Version of `sonar-python-plugin` used by integration tests (you can override this value to perform matrix compatibility tests) --> |
83 | 84 | <test-it.sonarpython.version>${sonarpython.version}</test-it.sonarpython.version> |
|
176 | 177 | <dependency> |
177 | 178 | <groupId>org.projectlombok</groupId> |
178 | 179 | <artifactId>lombok</artifactId> |
179 | | - <version>1.18.38</version> |
| 180 | + <version>${lombok.version}</version> |
180 | 181 | <scope>test</scope> |
181 | 182 | </dependency> |
182 | 183 |
|
|
189 | 190 | <groupId>org.apache.maven.plugins</groupId> |
190 | 191 | <artifactId>maven-compiler-plugin</artifactId> |
191 | 192 | <version>3.14.0</version> |
| 193 | + <configuration> |
| 194 | + <annotationProcessorPaths> |
| 195 | + <path> |
| 196 | + <groupId>org.projectlombok</groupId> |
| 197 | + <artifactId>lombok</artifactId> |
| 198 | + <version>${lombok.version}</version> |
| 199 | + </path> |
| 200 | + </annotationProcessorPaths> |
| 201 | + </configuration> |
192 | 202 | </plugin> |
193 | 203 | <plugin> |
194 | 204 | <groupId>org.apache.maven.plugins</groupId> |
|
0 commit comments