0

I tried all the mentioned solutions here lombok doesn't exist but i couldn't be able to resolve this issue.

I used these dependencies..

compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'

testCompileOnly 'org.projectlombok:lombok:1.18.24'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.24'

here is the description of tech stack used :

gradle version: 7.4.2
jdk: 1.8
intellij idea: IntelliJ IDEA 2019.1.4 (Ultimate Edition)

Can anyone guide me how to handle this issue?

Vikrant Kashyap
  • 6,398
  • 3
  • 32
  • 52

1 Answers1

0

perhaps adding these dependencies will help:

compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'

final result looks like this:

compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
testCompileOnly 'org.projectlombok:lombok:1.18.24'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.24'