build: Update OAuth2 version in build.gradle.kts
All checks were successful
Quality Check / Tests (pull_request) Successful in 1m20s
gitea-sonarqube-bot OK
Build PR / Build and analyze (pull_request) Successful in 1m51s
Quality Check / Checkstyle Main (pull_request) Successful in 40s

This commit is contained in:
Jan Gleytenhoover 2024-10-02 10:11:24 +02:00
parent db5c629080
commit 2268c37761
Signed by: jank
GPG Key ID: B267751B8AE29EFE

@ -59,6 +59,7 @@ repositories {
} }
val springDocVersion = "2.6.0" val springDocVersion = "2.6.0"
val oauth2Version = "3.3.4"
dependencies { dependencies {
implementation("org.springframework.boot:spring-boot-starter-data-jpa") implementation("org.springframework.boot:spring-boot-starter-data-jpa")
@ -66,8 +67,8 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-validation") implementation("org.springframework.boot:spring-boot-starter-validation")
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:$springDocVersion") implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:$springDocVersion")
implementation("org.springframework.boot:spring-boot-starter-security") implementation("org.springframework.boot:spring-boot-starter-security")
implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server:3.3.4") implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server:$oauth2Version")
implementation("org.springframework.boot:spring-boot-starter-oauth2-client:3.3.4") implementation("org.springframework.boot:spring-boot-starter-oauth2-client:$oauth2Version")
testImplementation("com.h2database:h2") testImplementation("com.h2database:h2")
testImplementation("org.springframework.boot:spring-boot-starter-test") testImplementation("org.springframework.boot:spring-boot-starter-test")