Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: beemi/spring-boot-mongodb-example
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 56c61873d4b637a05241c3c4be1954db3d3e8e4b
Choose a base ref
..
head repository: beemi/spring-boot-mongodb-example
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 984677bf3f2257597006991fc063086aa2d57ba6
Choose a head ref
Showing with 4 additions and 4 deletions.
  1. +4 −4 build.gradle
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -24,11 +24,11 @@ dependencies {
// monitoring
implementation group: 'io.micrometer', name: 'micrometer-registry-prometheus', version: '1.8.4'

compileOnly 'org.projectlombok:lombok:1.18.26'
annotationProcessor 'org.projectlombok:lombok:1.18.26'
compileOnly 'org.projectlombok:lombok:1.18.28'
annotationProcessor 'org.projectlombok:lombok:1.18.28'

testCompileOnly 'org.projectlombok:lombok:1.18.26'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.26'
testCompileOnly 'org.projectlombok:lombok:1.18.28'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.28'
}

testing {