From f447b13adb346ad92ab0c33d073a158ea5c968b5 Mon Sep 17 00:00:00 2001
From: Reinier Zwitserloot
Lombok normally adds @javax.annotation.Generated
annotations to all generated nodes where possible. You can stop this with:
lombok.addGeneratedAnnotation = false
+ lombok.addJavaxGeneratedAnnotation = false
+
+ Lombok can be configured to add @lombok.Generated
annotations to all generated nodes where possible; useful for JaCoCo (which has built in support),
+ or other style checkers and code coverage tools:
+
lombok.addLombokGeneratedAnnotation = true
Lombok can add the @SuppressFBWarnings
annotation which is useful if you want to run FindBugs on your class files. To enable this feature, make sure findbugs is on the classpath when you compile, and add the following config key:
--
cgit