corrected privileges, see #11

This commit is contained in:
Jottyfan
2023-12-27 11:01:46 +01:00
parent 0d476c6f91
commit 8e790a7660
26 changed files with 172 additions and 156 deletions

View File

@ -1,6 +1,6 @@
plugins {
id 'org.springframework.boot' version '3.1.5'
id "io.spring.dependency-management" version "1.1.3"
id 'org.springframework.boot' version '3.2.1'
id "io.spring.dependency-management" version "1.1.4"
id 'java'
id 'war'
id 'eclipse'
@ -8,7 +8,7 @@ plugins {
}
group = 'de.jottyfan.camporganizer'
version = '0.6.5'
version = '0.6.6'
description = """CampOrganizer2"""
@ -41,12 +41,12 @@ war {
}
dependencies {
implementation 'org.apache.logging.log4j:log4j-api:2.21.0'
implementation 'org.apache.logging.log4j:log4j-core:2.21.0'
implementation 'org.apache.logging.log4j:log4j-to-slf4j:2.21.0'
implementation 'org.apache.logging.log4j:log4j-api:2.22.0'
implementation 'org.apache.logging.log4j:log4j-core:2.22.0'
implementation 'org.apache.logging.log4j:log4j-to-slf4j:2.22.0'
implementation 'org.webjars:bootstrap:5.3.2'
implementation 'org.webjars:font-awesome:6.4.2'
implementation 'org.webjars:font-awesome:6.5.1'
implementation 'org.webjars:jquery:3.7.1'
implementation 'org.webjars:popper.js:2.11.7'
implementation 'org.webjars:datatables:1.13.5'
@ -55,9 +55,9 @@ dependencies {
implementation 'net.sf.biweekly:biweekly:0.6.7'
// for using the keycloak rest interface
implementation 'org.keycloak:keycloak-server-spi:22.0.4'
implementation 'org.keycloak:keycloak-admin-client:22.0.4'
implementation 'org.jboss.resteasy:resteasy-client:6.2.5.Final'
implementation 'org.keycloak:keycloak-server-spi:23.0.3'
implementation 'org.keycloak:keycloak-admin-client:23.0.3'
implementation 'org.jboss.resteasy:resteasy-client:6.2.6.Final'
// backward compatibility until the complete registration is converted to keycloak
implementation 'org.jasypt:jasypt:1.9.3'
@ -66,13 +66,13 @@ dependencies {
implementation 'com.rometools:rome:2.1.0'
// mail support
implementation 'commons-validator:commons-validator:1.7'
implementation 'commons-validator:commons-validator:1.8.0'
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'org.springframework.boot:spring-boot-starter-jooq'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation "org.springframework.boot:spring-boot-starter-oauth2-client"
implementation 'org.springframework.security:spring-security-oauth2-authorization-server:1.1.3'
implementation 'org.springframework.security:spring-security-oauth2-authorization-server:1.2.1'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
@ -80,7 +80,7 @@ dependencies {
implementation 'de.jottyfan:COJooq:2023.03'
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:3.3.0'
implementation 'commons-io:commons-io:2.14.0'
implementation 'commons-io:commons-io:2.15.1'
runtimeOnly 'org.springframework.boot:spring-boot-starter-tomcat'
testImplementation 'org.springframework.boot:spring-boot-starter-test'