Skip to content

Commit 0769f33

Browse files
authored
Merge pull request #80 from dirdr/main
Fix compilation error on ARM64 architecture
2 parents c03b4d4 + 68e3c5d commit 0769f33

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

pom.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
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>
@@ -176,7 +177,7 @@
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

@@ -189,6 +190,15 @@
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>

0 commit comments

Comments
 (0)