warning: You aren't using a compiler supported by lombok, so lombok will not work and has been disabled.  
  Your processor is: [org.gradle.api.internal.tasks.compile.processing.IncrementalProcessingEnvironment](org.gradle.api.internal.tasks.compile.processing.IncrementalProcessingEnvironment)  
  Lombok supports: sun/apple javac 1.6, ECJ  
1 warning

에러가 뜰 시

build.gradle 에서

compileJava{  
 options.fork = false  
 options.incremental = false  
}

추가.

+ Recent posts