From 27a622b27b28fe42d4d10fa1eadffdfdc85e7c64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=AD=C5=A5a=20Kota=C4=8Dka?= Date: Fri, 15 May 2026 14:20:46 +0200 Subject: [PATCH] Fix #455: Configure annotationProcessorPaths for Lombok in maven-compiler-plugin Starting with JDK 23, the default annotation processing policy changed to 'none', causing Lombok-generated members (e.g. @Slf4j logger field) to be invisible to javac on Java 25. Explicitly registering Lombok via annotationProcessorPaths fixes the issue. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pom.xml b/pom.xml index 76dcaac..ee2a9ee 100644 --- a/pom.xml +++ b/pom.xml @@ -95,6 +95,14 @@ org.apache.maven.plugins maven-compiler-plugin ${maven-compiler-plugin.version} + + + + org.projectlombok + lombok + + +