I have a Spring Boot application with Java 11. I am using IntelliJ 2022.1.4 (Ultimate Edition). Lombok plug-in is installed and enabled in the IDE - version bundled 221.6008.13. In my pom.xml I have the maven dependency for project Lombok - version 1.18.28 with scope provided.
Annotation processing is enabled in the IDE settings. I’m using maven-compiler-plug-in. The issue is that when I try to build the project, I have error that the getters and setters methods in my classes are not defined (I have the annotations @Getter @Setter).
I already tried with restarts, invalidate caches etc.