lombok.fieldDefaults.defaultPrivate = true
lombok.fieldDefaults.defaultFinal = true
These properties doesn't affects my classes. If i put @FieldDefaults directly above class then it works.
I put lombok.config file in root directory
Just put lombok.config with properties described in Short description then
It's possible to invoke ProductSearchParams p = new ProductSearchParams(); // no required argument
Put @FieldDefaults(makeFinal=true, level=AccessLevel.PRIVATE) above class
NOT possible to call ProductSearchParams constructor without argument
Please provide a sample project that exhibits the problem.
You should also include .idea folder so we can inspect the settings.
Having the same issue - trying to set
config.stopBubbling = true
lombok.extern.findbugs.addSuppressFBWarnings=true
Put the file in root, src/main/java - it's not applied.
lombok plugin is not compatible with IDEA 2018.1 (see #449)
duplicate of #353
I still have the issue of this not working:
config.stopBubbling = true
lombok.extern.findbugs.addSuppressFBWarnings=true
I placed lombok.config in /, /src/main/java, and in /src/main/java/my/package