Home > Net >  how can I add lombok jar into intellij idea without installing plugin?
how can I add lombok jar into intellij idea without installing plugin?

Time:12-04

I was working on a spring boot project using eclipse. I'm trying to shift to intellij idea but there is lombok jar that our project uses. Due to restrictions from network connection I can't download and install lombok plugin. I can able to connect lombok jar with eclipse. But not sure how to connect the lombok jar with intellij idea. I searched online, didn't find solution. Please help me with this one. Thanks in advance :)

CodePudding user response:

You can visit Github project page of Lombok Plugin for Intellij Idea at here: https://github.com/mplushnikov/lombok-intellij-plugin/ and following the instruction:

Manually: Download the latest release and install it manually using

Preferences > Plugins > Install plugin from disk...

Restart IDE.

Required IntelliJ Configuration

In your project: Click Preferences -> Build, Execution, Deployment -> Compiler, Annotation Processors.

Click Enable Annotation Processing

Afterwards you might need to do a complete rebuild of your project via Build -> Rebuild Project.

  • Note: Lombok project dependency in build tool Gradle/Maven...
  • Related