Bump lombok to 1.18.24

This commit is contained in:
Paul Schaub 2022-04-26 01:03:54 +02:00
parent d82b22131f
commit 80ff3cf47a
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
2 changed files with 5 additions and 4 deletions

View File

@ -11,5 +11,6 @@ allprojects {
junitVersion = '5.8.2' junitVersion = '5.8.2'
slf4jVersion = '1.7.36' slf4jVersion = '1.7.36'
logbackVersion = '1.2.11' logbackVersion = '1.2.11'
lombokVersion = '1.18.24'
} }
} }

View File

@ -24,10 +24,10 @@ dependencies {
implementation "com.google.code.findbugs:jsr305:3.0.2" implementation "com.google.code.findbugs:jsr305:3.0.2"
// Lombok (@SneakyThrows...) // Lombok (@SneakyThrows...)
compileOnly 'org.projectlombok:lombok:1.18.22' compileOnly "org.projectlombok:lombok:$lombokVersion"
annotationProcessor 'org.projectlombok:lombok:1.18.22' annotationProcessor "org.projectlombok:lombok:$lombokVersion"
testCompileOnly 'org.projectlombok:lombok:1.18.22' testCompileOnly "org.projectlombok:lombok:$lombokVersion"
testAnnotationProcessor 'org.projectlombok:lombok:1.18.22' testAnnotationProcessor "org.projectlombok:lombok:$lombokVersion"
// JSON // JSON
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.2.2' implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.2.2'