From 1d47b908a6400b4abf1c64e74a4dacc7352ffbfe Mon Sep 17 00:00:00 2001 From: tangcent Date: Fri, 7 Feb 2020 19:54:13 +0800 Subject: [PATCH] add annotationProcessor with lombok --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 2ac16e8..268ea79 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,8 @@ repositories { dependencies { compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.6' testCompile group: 'junit', name: 'junit', version: '4.12' - compileOnly "org.projectlombok:lombok:1.18.0" + compileOnly "org.projectlombok:lombok:1.18.10" + annotationProcessor "org.projectlombok:lombok:1.18.10" } intellij {