I am trying to setup an Oracle database with JOOQ on Maven for Code Generation. Currently trying to connect with Oracle Database JDBC.
https://www.jooq.org/doc/2.6/manual/code-generation/codegen-configuration/
The following example from resource is Postgresql. What is the syntax for Dependencies for Oracle setup?
<dependencies>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.4.1212</version>
</dependency>
</dependencies>