삽질기록

스프링부트+그래들+롬복 ) warning: You aren't using a compiler supported by lombok

gracelove91 2019. 8. 9. 14:04
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  
}

추가.