As far as I understand, Lombok uses Java\'s Annotation Processors to generate additional methods.
With Maven 3.5 it works perfectly without adding any additional con
IntelliJ's code analysis engine does not use javac or run annotation processors. Instead, IntelliJ uses its own Java parser and reference resolution logic, and builds its own code model. The Lombok plugin extends the code model to provide information about declarations generated by the Lombok annotation processor.