Describe the bug
Lombok refusing to run when compiling, this is the only warning I receive:

To Reproduce
The errror consists in this project, basically just from basic setup.
https://github.com/codebottle-io/codebottle-java
Expected behavior
no warning showing up lmao
Version info (please complete the following information):
Using IntelliJ 2019.1 and Gradle with the following imports:
// Lombok
compileOnly 'org.projectlombok:lombok:1.18.10'
annotationProcessor 'org.projectlombok:lombok:1.18.8'
Annotation processing indeed is enabled in IntelliJ.
This may be related to the idea plugin and/or the fact that CustomLog is rather new. Normally, such errors come from having two different versions of a library on the class path.
All I (just a random guy here) can recommend is to try to upgrade the plugin and/or downgrade Lombok. Or search the plugin issues.
I had the the same issue @Maaartinus is correct
I had an old dependency upon 1.18.8 within my ~/.gradle cache so manually removed it, now everything works
@burdoto Did the suggestions from @Maaartinus and @kushal256 help you solve the problem?
I've noticed that I've been depending on two different minor versions of Lombok:

Resolving this solved the problem.
Most helpful comment
This may be related to the idea plugin and/or the fact that
CustomLogis rather new. Normally, such errors come from having two different versions of a library on the class path.All I (just a random guy here) can recommend is to try to upgrade the plugin and/or downgrade Lombok. Or search the plugin issues.