Hmm, obviously, something is wrong with how your classpath is set up. You said you were executing:
java -cp jooq-2.5.2.jar:jooq-meta-2.5.2.jar:jooq-codegen-2.5.2.jar: mysql-connector-java-5.1.18-bin.jar: org.jooq.util.GenerationTool /.library.xml How about you replace the above by this: java -cp jooq-2.5.2.jar:jooq-meta-2.5.2.jar:jooq-codegen-2.5.2.jar: mysql-connector-java-5.1.18-bin.jar:. org.jooq.util.GenerationTool /l ibrary.xml Also, are you sure that jooq-meta-x.x.x.jar is in your local directory? 2014-02-21 14:45 GMT+01:00 Prashant Kumar <[email protected]>: > Hi Lukas Eder, >> > > thanks for your reply > I tried this code with latest version of jooq i.e jooq-3.3.0.zip with > necessary modification > but it does work for me. > > -- > 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/groups/opt_out. > -- 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/groups/opt_out.
