I would like to run the generateJooq
gradle task automatically whenever Renovate updates the jOOQ version.
I use jOOQ in my Java project. When Renovate updates it, the library's version is changed, but all auto-generated jOOQ classes are not refreshed. Renovate creates a commit that changes the library but doesn't change the code. As a result, the code is generated when I run first generateJooq
or build
after jOOQ's update. It's inconvenient because database changes are added to some next commit which has nothing to do with the database. It would be more concise if auto-generated classes are updated in Renovate's commit.
The problem would be solved e.g. if the gradle task generateJooq
is run whenever Renovate updates jOOQ. I haven't found such an option in Renovate's documentation.