2016-jeeconf-rapid-ratpack-java
2016-jeeconf-rapid-ratpack-java copied to clipboard
jooqCodegen gradle tasks have incorrect import
The import
import org.jooq.util.*
in the gradle tasks is incorrect as it provides the interfaces for Generator
and Database
, instead of the classes.
The import should be changed to
import org.jooq.util.GenerationTool