Hello, We don't update the XSDs with every patch release. The available XSDs can be found here: http://www.jooq.org/xsd
Or in the manual, on some pages: http://www.jooq.org/doc/3.5/manual/getting-started/tutorials/jooq-in-7-steps/jooq-in-7-steps-step3/ Note that you don't have to specify the namespace. If you don't (e.g. when using Maven) jOOQ's GenerationTools will patch it in for you. If you specify the wrong namespace, it'll correct it, too. I suspect that the error you've gotten is because you're using apostrophes ( ' ) rather than quotes ( " ) and you should refer to jooq-codegen-3.5.0.xsd Hope this helps, Lukas 2015-02-11 10:31 GMT+01:00 Juri Krainjukov <[email protected]>: > Here's configuration I use > > <configuration xmlns='*http://www.jooq.org/xsd/jooq-codegen-3.5.2.xsd > <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 > <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. > -- 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.
