Lombok¶
Project Lombok is a Java library that generates getters, setters, builders, and other boilerplate code from annotations.
Amper provides the settings.lombok option to configure Lombok conveniently in your project:
settings:
lombok: enabled
When Lombok is enabled, Amper adds the lombok dependency, the annotation processor for Java,
and the Kotlin compiler plugin.
You can also customize the version of the Lombok library using the full form of the configuration:
settings:
lombok:
enabled: true
version: 1.18.42