diff options
-rw-r--r-- | website/templates/features/configuration.html | 8 |
1 files changed, 7 insertions, 1 deletions
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 @@ </p><p> Lombok normally adds <code>@javax.annotation.Generated</code> annotations to all generated nodes where possible. You can stop this with: <div class="snippet example"> - <code>lombok.addGeneratedAnnotation = false</code> + <code>lombok.addJavaxGeneratedAnnotation = false</code> + </div> + </p><p> + Lombok can be configured to add <code>@lombok.Generated</code> annotations to all generated nodes where possible; useful for JaCoCo (which has built in support), + or other style checkers and code coverage tools: + <div class="snippet example"> + <code>lombok.addLombokGeneratedAnnotation = true</code> </div> </p><p> Lombok can add the <code>@SuppressFBWarnings</code> annotation which is useful if you want to run <a href="http://findbugs.sourceforge.net/">FindBugs</a> on your class files. To enable this feature, make sure findbugs is on the classpath when you compile, and add the following config key: |