From f447b13adb346ad92ab0c33d073a158ea5c968b5 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Tue, 16 May 2017 00:25:08 +0200 Subject: update to refer to lombok.Generated vs javax.annotation.Generated in docs. --- website/templates/features/configuration.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'website') diff --git a/website/templates/features/configuration.html b/website/templates/features/configuration.html index d33ae1c5..642332a0 100644 --- a/website/templates/features/configuration.html +++ b/website/templates/features/configuration.html @@ -81,7 +81,13 @@

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