Alex
04/25/2025, 12:42 PMkqr
04/25/2025, 12:46 PMAlex
04/25/2025, 12:48 PMAlex
04/25/2025, 12:48 PMkqr
04/25/2025, 1:01 PMAlex
04/25/2025, 1:06 PMAlex
04/25/2025, 1:06 PMkqr
04/25/2025, 1:07 PMAlex
04/25/2025, 1:16 PMAlex
04/25/2025, 1:16 PMAlex
04/25/2025, 1:26 PMAlex
04/25/2025, 1:30 PMjooqGenerator - The classpath used to invoke the jOOQ code generator. Add your JDBC driver, generator extensions, and additional dependencies here.
+--- org.jooq:jooq-codegen:3.20.3
| +--- org.jooq:jooq:3.20.3 -> 3.19.21
| | \--- io.r2dbc:r2dbc-spi:1.0.0.RELEASE
| | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4
| \--- org.jooq:jooq-meta:3.20.3 -> 3.19.21
| +--- org.jooq:jooq:3.19.21 (*)
| \--- jakarta.xml.bind:jakarta.xml.bind-api:4.0.0 -> 4.0.2
| \--- jakarta.activation:jakarta.activation-api:2.1.3
\--- org.postgresql:postgresql:42.7.2
\--- org.checkerframework:checker-qual:3.42.0
Alex
04/25/2025, 1:30 PMAlex
04/25/2025, 1:31 PMEdgar Avuzi
04/25/2025, 1:40 PMbuild.gradle.kts
and general things. E.g. you can start with booting this project up and incrementally get rid of Java for KotlinAlex
04/25/2025, 2:22 PMAlex
04/25/2025, 2:25 PMAlex
04/25/2025, 7:21 PMjooqGenerator
as well as the implementation dependencies.
implementation("org.jooq:jooq:$jooqVersion")
implementation("org.jooq:jooq-kotlin:$jooqVersion")
implementation("org.jooq:jooq-meta:$jooqVersion")
implementation("org.jooq:jooq-meta-kotlin:$jooqVersion")
implementation("org.jooq:jooq-codegen:$jooqVersion")
implementation("org.postgresql:postgresql:42.7.5")
// JOOQ Generator
jooqGenerator("org.postgresql:postgresql:42.7.5")
jooqGenerator("org.jooq:jooq-meta:$jooqVersion")
jooqGenerator("org.jooq:jooq-meta-kotlin:$jooqVersion")
jooqGenerator("org.jooq:jooq-codegen:$jooqVersion")
jooqGenerator("org.jooq:jooq:$jooqVersion")
jooqGenerator("org.jooq:jooq-kotlin:$jooqVersion")
After that everything worked.
But it feels wrong somehow. Feels like a crutch.