jOOQ does not generate sources
I am trying to include jOOQ into my code, however no code is being generated. When executing mvn clean generate-sources , no sources are generated. I want it to create a Category class, which is defined in the following schema.sql -file. CREATE TABLE IF NOT EXISTS category ( id INTEGER IDENTITY PRIMARY KEY, name VARCHAR(100), description VARCHAR(2000), age_group VARCHAR(20), created DATETIME, inserted BIGINT ); My pom.xml file looks like this: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM