NOTES INDEX This page is part of the collection of "notes" - these can be considered to be micro-blogs.
Lombok SonarQube Config

Lombok SonarQube Config

To skip code which is generated by Lombok in the SonarQube code checks, create a file “lombok.config” in your Java/Kotlin maven project, with these two lines in it:

lombok.anyConstructor.addConstructorProperties=true
lombok.addLombokGeneratedAnnotation=trueCode language: Properties (properties)

The addLombokGeneratedAnnotation setting does the trick…

December 18, 2021

Leave a Reply

Your email address will not be published. Required fields are marked *