File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
lesson_26/api/java/api_app Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff 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
1110apply (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
4447application {
@@ -76,4 +79,4 @@ configure<com.diffplug.gradle.spotless.SpotlessExtension> {
7679 // fix formatting of type annotations
7780 formatAnnotations()
7881 }
79- }
82+ }
You can’t perform that action at this time.
0 commit comments