(note: we run the codegen against a Postgresql database, so we do it manually and commit the generated files, hence the jooqOutputDir being in src/main, and running Spotless as a finalizer task to reformat the code; also we only use SQL migrations, hence the inputs only listing src/main/resources/db/migration)
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
FWIW, the way I do the jOOQ codegen in my projects is to "just" use a
JavaExectask and put the config in an XML file:(note: we run the codegen against a Postgresql database, so we do it manually and commit the generated files, hence the
jooqOutputDirbeing insrc/main, and running Spotless as a finalizer task to reformat the code; also we only use SQL migrations, hence theinputsonly listingsrc/main/resources/db/migration)