I'm using Open Source version of JOOQ 3.13.4.
here is the relevant snippet of my pom file:
<dependency>
<groupId>org.jooq</groupId>
<artifactId>jooq</artifactId>
<version>3.13.4</version>
</dependency>
<dependency>
<groupId>org.jooq</groupId>
<artifactId>jooq-meta</artifactId>
<version>3.13.4</version>
</dependency>
<dependency>
<groupId>org.jooq</groupId>
<artifactId>jooq-codegen</artifactId>
<version>3.13.4</version>
</dependency>
when I try to reference org.jooq.meta.extensions.jpa.JPADatabase
I get a ClassNotFoundException.
Other examples on the internet reference org.jooq.util.jpa.JPADatabase but even that one gives me a ClassNotFoundException.
I looked throughout all the jar files in the above artifacts and indeed that class doesn't exist anywhere. The documentation states that it is supported in the Open Source Version.
Am I missing something?
Thank you