Re: Gradle codegen without a gradle plugin...

2014-07-09 Thread Lukas Eder
Note, there is also a user-contribution by Etienne Studer here: https://github.com/etiennestuder/gradle-jooq-plugin Am Mittwoch, 18. Juni 2014 13:12:09 UTC+2 schrieb Stéphane Cl: > > Hello, > > Almost exactly what I did... > > apply plugin: 'java' > > dependencies { > compile group:'org.jooq'

Re: Gradle codegen without a gradle plugin...

2014-06-18 Thread Stéphane Cl
Hello, Almost exactly what I did... apply plugin: 'java' dependencies { compile group:'org.jooq', name:'jooq', version:'2.6.4' compile 'postgresql:postgresql:9.1-901.jdbc4' compile 'org.jooq:jooq-codegen:2.6.4' compile 'org.jooq:jooq-meta:2.6.4' } task runCodeGen( dependsOn: '

Re: Gradle codegen without a gradle plugin...

2014-06-17 Thread Lukas Eder
Hi Deven, Thank you very much for this contribution. Yes, we should be pushing that official plugin, but in the mean time, your post is very useful for many users. Cheers, Lukas 2014-06-17 20:38 GMT+02:00 Deven Phillips : > For those of you, like me, who are too impatient to wait for the offic

Gradle codegen without a gradle plugin...

2014-06-17 Thread Deven Phillips
For those of you, like me, who are too impatient to wait for the official gradle plugin, here's a working methodology for codegen with gradle: In your build.gradle add: dependencies { < existing dependencies > compile 'org.jooq:jooq:3.2.2' compile 'org.jooq:jooq-meta:3.2.2'