Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,17 @@
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<!-- Declare the annotation processor path explicitly instead of relying on classpath
service discovery. Lombok is the only annotation processor in the build, and an
isolated processor path avoids the flaky "Provider lombok... could not be
instantiated" ServiceLoader race seen under parallel (-T) reactor builds. -->
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
Expand Down
Loading