added support for youth group

This commit is contained in:
Jottyfan
2025-12-14 17:39:19 +01:00
parent 08442dc7ea
commit 3726b9172c
35 changed files with 228 additions and 870 deletions

View File

@@ -8,7 +8,7 @@ plugins {
}
group = 'de.jottyfan.bico'
version = '0.2.7'
version = '0.2.8'
description = """BibleClassOrganizer"""
@@ -16,13 +16,10 @@ java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
sourceCompatibility = 21
targetCompatibility = 21
}
sourceCompatibility = 21
targetCompatibility = 21
mainClassName = "de.jottyfan.bico.Main"
repositories {
mavenCentral()
maven {
@@ -47,9 +44,9 @@ war {
}
dependencies {
implementation 'de.jottyfan:bicolib:8'
implementation 'de.jottyfan:bicolib:9'
implementation 'org.mnode.ical4j:ical4j:4.0.4'
implementation 'org.mnode.ical4j:ical4j:4.2.2'
implementation 'org.springframework.boot:spring-boot-starter-jooq'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
@@ -60,13 +57,13 @@ dependencies {
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:latest.release'
implementation 'org.springframework.security:spring-security-oauth2-client'
implementation 'org.webjars:bootstrap:5.3.3'
implementation 'org.webjars.npm:bootstrap-icons:1.11.3'
implementation 'org.webjars:bootstrap:5.3.8'
implementation 'org.webjars.npm:bootstrap-icons:1.13.1'
implementation 'org.webjars:jquery:3.7.1'
implementation 'org.webjars.npm:datatables.net:2.1.7'
implementation 'org.webjars.npm:datatables.net-buttons:3.1.1'
implementation 'org.webjars.npm:datatables.net-responsive:3.0.1'
implementation 'org.webjars.npm:datatables.net-bs5:2.1.7'
implementation 'org.webjars.npm:datatables.net:2.3.5'
implementation 'org.webjars.npm:datatables.net-buttons:3.2.5'
implementation 'org.webjars.npm:datatables.net-responsive:3.0.6'
implementation 'org.webjars.npm:datatables.net-bs5:2.3.5'
implementation 'org.springframework.boot:spring-boot-devtools'