Hi Markus, The jOOQ Open Source Edition does not support Oracle. Please consider this list to decide which edition is the right one for you: https://www.jooq.org/legal/licensing#databases
To try jOOQ for free, you can download the jOOQ Trial Edition from this website: http://www.jooq.org/download/ I hope this helps, Lukas On Wed, May 29, 2019 at 4:15 PM <[email protected]> wrote: > Hello Lukas, > > I am using the maven plugin with the open source version 3.11.11. > Following is my generation config: > > <plugin> > <groupId>org.jooq</groupId> > <artifactId>jooq-codegen-maven</artifactId> > <version>${jooq-version}</version> > <executions> > <execution> > <goals> > <goal>generate</goal> > </goals> > </execution> > </executions> > <dependencies> > <dependency> > <groupId>com.oracle</groupId> > <artifactId>ojdbc7</artifactId> > <version>12.1.0.2</version> > </dependency> > </dependencies> > > <configuration> > <jdbc> > <driver>oracle.jdbc.OracleDriver</driver> > <url>jdbc:oracle:thin:@...</url> > <user>...</user> > <password>...</password> > </jdbc> > > <generator> > <database> > <name>org.jooq.meta.jdbc.JDBCDatabase</name> > <includes>.*</includes> > <inputSchema>my_schema</inputSchema> > </database> > <target> > <packageName>com.foo</packageName> > <directory>target/generated-sources > </directory> > </target> > </generator> > </configuration> > </plugin> > > > Thanks, > Markus > > -- > You received this message because you are subscribed to the Google Groups > "jOOQ User Group" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/jooq-user/a1982925-a654-44f9-b65a-c9ca96fab461%40googlegroups.com > <https://groups.google.com/d/msgid/jooq-user/a1982925-a654-44f9-b65a-c9ca96fab461%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "jOOQ User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jooq-user/CAB4ELO6%2By5v5jga%3Dewm4VFqV7C4Qv8OAU3MC-0xM32J%3DXuaVbg%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
