diff --git a/backend/build.gradle b/backend/build.gradle index cbed90e..fa8ca08 100644 --- a/backend/build.gradle +++ b/backend/build.gradle @@ -1,10 +1,10 @@ plugins { - id 'org.springframework.boot' version '3.3.4' + id 'org.springframework.boot' version '3.4.0' id 'io.spring.dependency-management' version '1.1.6' - id 'org.jetbrains.kotlin.jvm' version '2.0.20' - id 'org.jetbrains.kotlin.plugin.spring' version '2.0.20' - id 'org.jetbrains.kotlin.plugin.noarg' version "2.0.20" - id 'org.jetbrains.kotlin.kapt' version "2.0.20" + id 'org.jetbrains.kotlin.jvm' version '2.1.0' + id 'org.jetbrains.kotlin.plugin.spring' version '2.1.0' + id 'org.jetbrains.kotlin.plugin.noarg' version "2.1.0" + id 'org.jetbrains.kotlin.kapt' version "2.1.0" } group = 'xyz.poeschl.roborush' @@ -27,7 +27,7 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-websocket' implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'com.fasterxml.jackson.module:jackson-module-kotlin' - implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0' + implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.7.0' implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'org.springframework.security:spring-security-messaging' implementation 'io.jsonwebtoken:jjwt-api:0.12.6' @@ -36,7 +36,7 @@ dependencies { implementation 'org.postgresql:postgresql' implementation 'net.karneim:pojobuilder:4.3.0:annotations' implementation 'org.apache.commons:commons-imaging:1.0.0-alpha5' - implementation 'org.apache.xmlgraphics:xmlgraphics-commons:2.9' + implementation 'org.apache.xmlgraphics:xmlgraphics-commons:2.10' kapt 'net.karneim:pojobuilder:4.3.0' @@ -45,7 +45,7 @@ dependencies { } testImplementation 'org.testcontainers:junit-jupiter' testImplementation 'org.testcontainers:postgresql' - testImplementation 'io.mockk:mockk:1.13.12' + testImplementation 'io.mockk:mockk:1.13.13' testImplementation 'de.pixel.mcc:MigrationChange-Checker:1.2.1' }