Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency org.projectlombok:lombok to v1.18.34 #2794

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,8 @@ dependencies {
implementation group: 'javax.json', name: 'javax.json-api', version: '1.1.4'
implementation group: 'javax.inject', name: 'javax.inject', version: '1'

annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.26'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.26'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.34'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.34'

testImplementation project(':domain-sample-data')
testImplementation project(path: ":ccd-adapter", configuration: 'testArtifacts')
Expand Down Expand Up @@ -350,7 +350,7 @@ configurations.all {

dependencies {
testImplementation project(path: ':domain-model')
implementation 'org.projectlombok:lombok:1.18.20'
implementation 'org.projectlombok:lombok:1.18.34'
integrationTestImplementation(sourceSets.test.output)
integrationTestImplementation(sourceSets.main.output)
integrationTestImplementation project(':email-client')
Expand Down
4 changes: 2 additions & 2 deletions ccd-adapter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ dependencies {
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.10'
implementation group: 'com.google.guava', name: 'guava', version: '33.1.0-jre'

annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.26'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.26'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.34'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.34'

testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.10.1'
Expand Down
4 changes: 2 additions & 2 deletions domain-model/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ dependencies {
// The below fixes https://nvd.nist.gov/vuln/detail/CVE-2019-12384 while waiting for spring to pull new version
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.17.0'

annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.26'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.26'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.34'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.34'

testImplementation project(':domain-sample-data')

Expand Down
4 changes: 2 additions & 2 deletions email-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ dependencies {
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-json'
implementation group: 'org.springframework.retry', name: 'spring-retry', version: '1.2.5.RELEASE'

annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.26'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.26'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.34'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.34'

//implementation group: 'uk.gov.hmcts.reform', name: 'logging', version: '5.1.6'
implementation group: 'com.github.hmcts.java-logging', name: 'logging', version: '6.1.4'
Expand Down
4 changes: 2 additions & 2 deletions job-scheduler/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ dependencies {
implementation group: 'com.google.guava', name: 'guava', version: '33.1.0-jre'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.10'

annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.26'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.26'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.34'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.34'

implementation group: 'ch.qos.logback', name: 'logback-classic', version: versions.logback
implementation group: 'ch.qos.logback', name: 'logback-core', version: versions.logback
Expand Down