Skip to content

Commit 4aa8813

Browse files
fix: lombok dependency update
1 parent ad5d3b8 commit 4aa8813

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lesson_26/api/java/api_app/build.gradle.kts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ plugins {
55
id("com.diffplug.spotless") version "6.25.0"
66
id("org.springframework.boot") version "3.4.0"
77
id("com.adarshr.test-logger") version "4.0.0"
8-
id("io.freefair.lombok") version "8.6"
98
}
109

1110
apply(plugin = "io.spring.dependency-management")
@@ -39,6 +38,10 @@ dependencies {
3938
implementation("org.apache.commons:commons-csv:1.10.0")
4039
implementation("org.xerial:sqlite-jdbc:3.36.0")
4140
implementation("org.hibernate.orm:hibernate-community-dialects:6.2.7.Final")
41+
compileOnly("org.projectlombok:lombok:1.18.38")
42+
annotationProcessor("org.projectlombok:lombok:1.18.38")
43+
testCompileOnly("org.projectlombok:lombok:1.18.38")
44+
testAnnotationProcessor("org.projectlombok:lombok:1.18.38")
4245
}
4346

4447
application {

0 commit comments

Comments
 (0)