From e64c6b5879d36d45ec6a768ff907b7857a2ee217 Mon Sep 17 00:00:00 2001 From: Rawi01 Date: Sat, 11 Feb 2023 20:33:46 +0100 Subject: [fixes #3346] Add jakarta Nonnull/Nullable annotations --- website/templates/features/configuration.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'website') diff --git a/website/templates/features/configuration.html b/website/templates/features/configuration.html index 11aa3455..c3c39835 100644 --- a/website/templates/features/configuration.html +++ b/website/templates/features/configuration.html @@ -87,7 +87,7 @@
  1. lombok.addNullAnnotations = <flavor>
- Many flavors are available: javax (=JSR305; not recommended), eclipse, jetbrains, netbeans, androidx, android.support (deprecated within android), checkerframework (recommended), findbugs, spring, jml, or define your own via CUSTOM:fully.qualified.NonNullAnnotation:fully.qualified.NullableAnnotation; if your nullity annotation is solely of the type use style (it annotates types, such as eclipse's and checkerframework's offerings, versus annotating methods and parameters), the format is CUSTOM:TYPE_USE:nonnullanno:nullableanno.
+ Many flavors are available: javax (=JSR305; not recommended), jakarta, eclipse, jetbrains, netbeans, androidx, android.support (deprecated within android), checkerframework (recommended), findbugs, spring, jml, or define your own via CUSTOM:fully.qualified.NonNullAnnotation:fully.qualified.NullableAnnotation; if your nullity annotation is solely of the type use style (it annotates types, such as eclipse's and checkerframework's offerings, versus annotating methods and parameters), the format is CUSTOM:TYPE_USE:nonnullanno:nullableanno.
This feature was added in lombok v1.18.12.

Lombok can be configured to add @lombok.Generated annotations to all generated nodes where possible; useful for JaCoCo (which has built in support), -- cgit