Here's configuration I use <configuration xmlns='*http://www.jooq.org/xsd/jooq-codegen-3.5.2.xsd*'> <jdbc> <driver>org.postgresql.Driver</driver> <url>jdbc:postgresql://localhost:5432/tavexwise</url> <user>...</user> <password>...</password> </jdbc> <generator> <strategy><name>org.jooq.util.DefaultGeneratorStrategy</name></strategy> <name>org.jooq.util.DefaultGenerator</name> <database> <schemata> <schema> <inputSchema>public</inputSchema> </schema> </schemata> </database> <generate /> <target> <packageName>....</packageName> <directory>...</directory> </target> </generator> </configuration>
and I get the following error: The *<generator/> tag is mandatory*. For details, see* http://www.jooq.org/xsd/jooq-codegen-3.5.0.xsd* (Which is strange, cause I've specified *3.5.2* xsd as you can see) It's the same if I change schema version to 3.5.1. It works with older 3.5.0 though -- 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]. For more options, visit https://groups.google.com/d/optout.
