db revision

This commit is contained in:
Jottyfan
2023-12-27 11:25:25 +01:00
parent 13682b24cc
commit 467cd5aa45
111 changed files with 3554 additions and 10374 deletions

View File

@ -7,27 +7,27 @@ buildscript {
jcenter()
}
dependencies {
classpath 'org.jooq:jooq-codegen:3.16.4'
classpath 'org.postgresql:postgresql:42.3.2'
classpath 'org.jooq:jooq-codegen:latest.release'
classpath 'org.postgresql:postgresql:latest.release'
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:latest.release'
classpath 'nu.studer.jooq:nu.studer.jooq.gradle.plugin:7.1.1'
classpath 'nu.studer.jooq:nu.studer.jooq.gradle.plugin:latest.release'
}
}
plugins {
id 'nu.studer.jooq' version '7.1.1'
id 'nu.studer.jooq' version '8.2.1'
}
apply plugin: 'java'
apply plugin: 'maven-publish'
group = 'de.jottyfan'
version = '2023.03'
version = '2023.12'
description = """COJooq"""
sourceCompatibility = 11
targetCompatibility = 11
sourceCompatibility = 17
targetCompatibility = 17
repositories {
mavenLocal()
@ -36,18 +36,18 @@ repositories {
}
dependencies {
implementation 'org.jooq:jooq:3.16.4'
implementation 'org.jooq:jooq-codegen:3.16.4'
implementation 'org.jooq:jooq:latest.release'
implementation 'org.jooq:jooq-codegen:latest.release'
implementation 'org.postgresql:postgresql:42.3.2'
implementation 'org.postgresql:postgresql:latest.release'
jooqGenerator 'org.postgresql:postgresql:42.3.2'
jooqGenerator 'org.postgresql:postgresql:latest.release'
}
import org.jooq.meta.jaxb.Logging
jooq {
version = '3.16.4'
version = '3.19.1'
edition = nu.studer.gradle.jooq.JooqEdition.OSS
configurations {
camporganizer {
@ -56,7 +56,7 @@ jooq {
logging = Logging.WARN
jdbc {
driver = 'org.postgresql.Driver'
url = 'jdbc:postgresql://localhost:5432/camporganizer'
url = 'jdbc:postgresql://localhost:5432/testcamporganizer'
user = 'jooq'
password = 'jooq'
properties {
@ -76,7 +76,7 @@ jooq {
deprecated = false
relations = true
records = true
immutablePojos = true
immutablePojos = false
fluentSetters = true
}
target {