File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515- upgrade libraries versions
1616- correction of technical problem with Integration tests (because of Maven format in technical answer to "sonar-orchestrator-junit5" library)
1717- update from jdk 11 to 17
18+ - Add Lombok annotation processing inside ` maven-compiler ` plugin, to fix compile error on Arm64 architecture
1819
1920### Deleted
2021
Original file line number Diff line number Diff line change 6767<!-- <sonarpython.version>5.4.0.22255</sonarpython.version>-->
6868
6969 <mockito .version>5.17.0</mockito .version>
70+ <lombok .version>1.18.38</lombok .version>
7071
7172 <!-- temporary version waiting for a real automatic release in creedengo repository -->
7273 <creedengo-rules-specifications .version>2.2.2</creedengo-rules-specifications .version>
176177 <dependency >
177178 <groupId >org.projectlombok</groupId >
178179 <artifactId >lombok</artifactId >
179- <version >1.18.38 </version >
180+ <version >${lombok.version} </version >
180181 <scope >test</scope >
181182 </dependency >
182183
189190 <groupId >org.apache.maven.plugins</groupId >
190191 <artifactId >maven-compiler-plugin</artifactId >
191192 <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 >
192202 </plugin >
193203 <plugin >
194204 <groupId >org.apache.maven.plugins</groupId >
You can’t perform that action at this time.
0 commit comments