I am working with JOOQ and trying to do code generation as shown in
https://www.jooq.org/doc/3.14/manual-single-page/#code-generation
It works like a charm and generated great DAOs, table records and POJOs. The generated POJOs follow a traditional Java bean style approach with getters/setters.
In our projects we are used to having domain objects immutable with Lombok annotations so we have builder classes, fluent method styles ex: order.withAmount(200).withCurrency("USD") etc.
Is there any way we can get JOOQ to generate pojos with this flavour?