From 178dd05baf9b3cd80683786b443b2aca82f1fa35 Mon Sep 17 00:00:00 2001 From: Sugui Date: Sun, 15 Dec 2024 16:12:05 +0100 Subject: [PATCH] chore: added lombok plugin --- build.gradle | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 7196be5..c8aabcf 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,7 @@ plugins { id 'org.springframework.boot' version '3.4.0' id 'io.spring.dependency-management' version '1.1.6' + id 'io.freefair.lombok' version '8.11' id 'java' } @@ -22,10 +23,6 @@ dependencies { implementation('org.springframework.boot:spring-boot-starter-validation') implementation('io.github.wimdeblauwe:error-handling-spring-boot-starter:4.5.0') implementation('org.springdoc:springdoc-openapi-starter-webmvc-ui:2.7.0') - compileOnly('org.projectlombok:lombok') - annotationProcessor('org.projectlombok:lombok') - testCompileOnly('org.projectlombok:lombok') - testAnnotationProcessor('org.projectlombok:lombok') developmentOnly('org.springframework.boot:spring-boot-devtools') developmentOnly('org.springframework.boot:spring-boot-docker-compose') testImplementation('org.springframework.boot:spring-boot-starter-test')