Thanks a lot for your report. This is a known issue - the relevant github issue is https://github.com/jOOQ/jOOQ/issues/4703
The workaround for you will be to use a generator strategy: - programmatic: https://www.jooq.org/doc/latest/manual/code-generation/codegen-generatorstrategy - configurative: https://www.jooq.org/doc/latest/manual/code-generation/codegen-matcherstrategy I hope this helps, Lukas On Sat, Dec 15, 2018 at 10:56 PM Christian Master <[email protected]> wrote: > I get in my generated UserSslType class > > ........ > public enum UserSslType implements EnumType { > _(""), > ANY("ANY"), > X509("X509"), > ..... > > jdk12-ea+22 > gradle 5.0 > nu.studer.jooq 3.0.2 > mysql-connector-java 6.0.6 > > sourceCompatibility = 9 > targetCompatibility = 9 > > the error: > error: as of release 9, '_' is a keyword, and may not be used as an > identifier > > Someone has an idea? > Thx > c > > > -- > You received this message because you are subscribed to the Google Groups > "jOOQ User Group" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "jOOQ User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
