new project block - codegen damaged...

This commit is contained in:
henkej
2026-01-14 12:28:15 +01:00
parent 435a1e28f6
commit 1464210765
94 changed files with 204 additions and 16559 deletions

View File

@@ -7,10 +7,10 @@ buildscript {
jcenter()
}
dependencies {
classpath 'org.jooq:jooq-codegen:3.18.6'
classpath 'org.postgresql:postgresql:42.6.0'
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:latest.release'
classpath 'nu.studer.jooq:nu.studer.jooq.gradle.plugin:8.2.1'
classpath 'org.jooq:jooq-codegen:3.19.15'
classpath 'org.postgresql:postgresql:latest.release'
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:latest.release'
classpath 'nu.studer:gradle-jooq-plugin:8.0'
}
}
@@ -23,14 +23,16 @@ apply plugin: 'maven-publish'
apply plugin: 'eclipse'
group = 'de.jottyfan'
version = '20240109'
version = '20260114'
def artifactId = 'timetrackjooq'
def versionNumber = version
description = """timetrackjooq"""
sourceCompatibility = 17
targetCompatibility = 17
java{
sourceCompatibility = 21
targetCompatibility = 21
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
@@ -43,21 +45,22 @@ repositories {
}
dependencies {
implementation 'org.jooq:jooq:3.18.6'
implementation 'org.jooq:jooq-codegen:3.18.6'
implementation 'org.jooq:jooq:3.19.15'
implementation 'org.jooq:jooq-codegen:3.19.15'
implementation 'org.postgresql:postgresql:42.6.0'
implementation 'org.postgresql:postgresql:latest.release'
jooqGenerator 'org.postgresql:postgresql:42.6.0'
jooqGenerator 'org.postgresql:postgresql:latest.release'
}
jooq {
edition = nu.studer.gradle.jooq.JooqEdition.OSS
version = '3.18.6'
version = '3.19.15'
configurations {
timetrack {
generateSchemaSourceOnCompilation = false
generationTool {
onError = 'LOG'
logging = org.jooq.meta.jaxb.Logging.WARN
jdbc {
driver = 'org.postgresql.Driver'
@@ -82,6 +85,12 @@ jooq {
schema {
inputSchema = 'note'
}
schema {
inputSchema = 'project'
}
schema {
inputSchema = 'public'
}
}
includes = '.*'
}