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'
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: '
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
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'