0

I have lombok plugin installed on Mac IntelliJ, but for some reason my intelliJ not finding log.info or other logger methods,

i verified the below settings, looks good.

Lombok annotations do not compile under Intellij idea

i reinstalled my lombok, and cleared cache and reset it, though no luck. I have re-installed IntelliJ.

I've cleared few setting under "~/Library/Preferences" too. Not working any suggestion?

parrotjack
  • 432
  • 1
  • 6
  • 18

2 Answers2

0

I primarily use Lombok for auto generating the getters,setters, toString etc. Even though you have downloaded it as a plugin, have you imported it in your pom.xml if you are using Maven project?

<dependency>
        <groupId>org.projectlombok</groupId>
        <artifactId>lombok</artifactId>
    </dependency>
Coder
  • 197
  • 1
  • 17
0

my intelliJ creates main.iml and test.iml after import. After removing those files, works fine. Thanks for your inputs.

parrotjack
  • 432
  • 1
  • 6
  • 18