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 - autoclosed #545

Closed
wants to merge 1 commit into from
Closed
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
10 changes: 5 additions & 5 deletions api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,12 @@ dependencies {
testImplementation group: 'org.springframework.security', name: 'spring-security-test', version: '5.2.1.RELEASE'
testImplementation group: 'org.hsqldb', name: 'hsqldb', version: '2.3.5'
testImplementation group: 'io.rest-assured', name: 'rest-assured'
testImplementation group: 'org.projectlombok', name: 'lombok', version: '1.18.28'
testImplementation group: 'org.projectlombok', name: 'lombok', version: '1.18.34'

annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.28'
functionalTestAnnotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.28'
smokeTestImplementation group: 'org.projectlombok', name: 'lombok', version: '1.18.28'
smokeTestAnnotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.28'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.34'
functionalTestAnnotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.34'
smokeTestImplementation group: 'org.projectlombok', name: 'lombok', version: '1.18.34'
smokeTestAnnotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.34'

integrationTestImplementation project(':fees-register-model')
integrationTestImplementation project(':fees-register-api-contract')
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,13 @@ subprojects {
implementation group:'org.dom4j',name:'dom4j',version: '2.1.3'
implementation group: 'org.owasp.encoder', name: 'encoder', version: '1.2'
testImplementation group: 'com.github.tomakehurst', name: 'wiremock-standalone', version: '2.27.2'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.28'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.28'
testAnnotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.28'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.34'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.34'
testAnnotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.34'
testImplementation group: 'junit', name: 'junit', version: '4.12'
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.11.1'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.28'
annotationProcessor 'org.projectlombok:lombok:1.18.28'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.34'
annotationProcessor 'org.projectlombok:lombok:1.18.34'
compileOnly group: 'com.google.code.findbugs', name: 'annotations', version: '3.0.1'
compileOnly group: 'joda-time', name: 'joda-time', version: '2.9.9'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-validation', version: '2.7.18'
Expand Down
Loading