Skip to content

Commit d437b34

Browse files
committed
pom.xml: update Lombok to 1.16.20
* lombok.addGeneratedAnnotation was removed because it was derpecated and replaced by lombok.addJavaxGeneratedAnnotation in 1.16.14: DEPRECATION: The configuration key lombok.addGeneratedAnnotation is now deprecated, use lombok.addJavaxGeneratedAnnotation instead. that is false by default starting from this release: BREAKING CHANGE: lombok config key lombok.addJavaxGeneratedAnnotation now defaults to false instead of true. Oracle broke this annotation with the release of JDK9, necessitating this breaking change. * lombok.anyConstructor.suppressConstructorProperties was removed because it is true by default starting from this release: BREAKING CHANGE: lombok config key lombok.anyConstructor.suppressConstructorProperties is now deprecated and defaults to true, that is, by default lombok no longer automatically generates @ConstructorProperties annotations. Changelog: https://projectlombok.org/changelog No functional changes.
1 parent ff8f646 commit d437b34

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@
538538
<liquibase.version>3.5.5</liquibase.version>
539539

540540
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.13.RELEASE/spring-boot-dependencies/pom.xml) -->
541-
<lombok.version>1.16.18</lombok.version>
541+
<lombok.version>1.16.20</lombok.version>
542542

543543
<minify.plugin.version>1.7.6</minify.plugin.version>
544544

src/lombok.config

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
# see https://projectlombok.org/features/configuration.html for details
1+
# see https://projectlombok.org/features/configuration for details
22
config.stopBubbling = true
3-
lombok.addGeneratedAnnotation = false
4-
lombok.anyConstructor.suppressConstructorProperties = true

0 commit comments

Comments
 (0)