Skip to content

Commit 9a5e7c5

Browse files
hongji3354filiphr
authored andcommitted
Fix breaking change from lombok
1 parent 38683f7 commit 9a5e7c5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

mapstruct-lombok/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@ repositories {
99

1010
ext {
1111
mapstructVersion = "1.4.1.Final"
12-
lombokVersion = "1.18.12"
12+
lombokVersion = "1.18.16"
13+
lombokMapstructBindingVersion = "0.2.0"
1314
}
1415

1516
sourceCompatibility = JavaVersion.VERSION_1_8
1617

1718
dependencies {
1819
implementation "org.mapstruct:mapstruct:${mapstructVersion}", "org.projectlombok:lombok:${lombokVersion}"
1920
testImplementation 'junit:junit:4.13.1'
20-
annotationProcessor "org.mapstruct:mapstruct-processor:${mapstructVersion}", "org.projectlombok:lombok:${lombokVersion}"
21+
annotationProcessor "org.mapstruct:mapstruct-processor:${mapstructVersion}", "org.projectlombok:lombok:${lombokVersion}", "org.projectlombok:lombok-mapstruct-binding:${lombokMapstructBindingVersion}"
2122
}

0 commit comments

Comments
 (0)