extended calendar view

This commit is contained in:
Jottyfan
2023-11-17 21:28:52 +01:00
parent 4c0c65310c
commit 5ca0b3f7fa
15 changed files with 990 additions and 23 deletions

View File

@ -7,10 +7,10 @@ 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'
}
}
@ -22,7 +22,7 @@ apply plugin: 'java'
apply plugin: 'maven-publish'
group = 'de.jottyfan'
version = '2'
version = '3'
description = """bicolib"""
@ -36,12 +36,12 @@ 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