I have a root module and submodule in maven in the project. I am trying to use Lombok. I have added
org.projectlombok&
I had this same issue and nothing worked, i.e. maven plugin version, annotationProcessorPaths, provided scope, etc.
In the end I narrowed it down to having a static import on an @UtilityClass
method from a class within the same project, i.e. not brought in from a dependency. This caused annotation processing to fail, even for unrelated classes, and made it look like lombok code was just not being compiled properly. Getting rid of the static import made it all work.
There's an open issue on Github for this, though apparently it's too hard to fix.