I have tried using Lombok on Intellij IDEA 13 Ultimate.
However. I get the famous error "cannot find symbol" for all the methods that should have been available when I am using specific annotations for example the once I use as annotations are @Builder
, @AllArgsConstructor
and @Data
.
I have already set my compiler to enable annotation processing and I have looked deeply into it, but with no solution of how to solve it.
Any advice or tips would be nice.
Kind of old question here, but I came across the same problem today. I had to do two things to make it work:
Settings -> Compiler -> Annotation
Processors
Compiler -> Java Compiler
you of course also need the Lombok plugin.