Lombok with IDEA 13: Cannot find symbol
In my case apart from enabling Annotation Processing and installing Lombok Plugin I had to rebuild project by Build -> Rebuild Project
Kind of old question here, but I came across the same problem today. I had to do two things to make it work:
- Set annotation processing on:
Settings -> Compiler -> Annotation Processors
- Change from ajc to javac for the project:
Compiler -> Java Compiler
you of course also need the Lombok plugin.