diff --git a/komga-tray/build.gradle.kts b/komga-tray/build.gradle.kts index 6d47c3bf1..3f9f33d02 100644 --- a/komga-tray/build.gradle.kts +++ b/komga-tray/build.gradle.kts @@ -17,8 +17,6 @@ kotlin { dependencies { implementation(project(":komga")) - implementation(platform("org.springframework.boot:spring-boot-dependencies:3.1.1")) - implementation("org.springframework.boot:spring-boot-starter-web") implementation(compose.desktop.common) diff --git a/komga/build.gradle.kts b/komga/build.gradle.kts index 97ca0b0c4..d4591dad7 100644 --- a/komga/build.gradle.kts +++ b/komga/build.gradle.kts @@ -8,7 +8,7 @@ plugins { kotlin("plugin.spring") kotlin("kapt") } - id("org.springframework.boot") version "3.1.1" + id("org.springframework.boot") version "3.1.4" id("com.gorylenko.gradle-git-properties") version "2.4.1" id("nu.studer.jooq") version "8.2.1" id("org.flywaydb.flyway") version "9.7.0" @@ -41,9 +41,9 @@ dependencies { implementation(kotlin("stdlib")) implementation(kotlin("reflect")) - implementation(platform("org.springframework.boot:spring-boot-dependencies:3.1.1")) + api(platform("org.springframework.boot:spring-boot-dependencies:3.1.4")) - implementation("org.springframework.boot:spring-boot-starter-web") + api("org.springframework.boot:spring-boot-starter-web") implementation("org.springframework.boot:spring-boot-starter-webflux") implementation("org.springframework.boot:spring-boot-starter-validation") implementation("org.springframework.boot:spring-boot-starter-actuator") @@ -56,7 +56,7 @@ dependencies { implementation("com.github.gotson:spring-session-caffeine:2.0.0") implementation("org.springframework.data:spring-data-commons") - kapt("org.springframework.boot:spring-boot-configuration-processor:3.1.1") + kapt("org.springframework.boot:spring-boot-configuration-processor:3.1.4") implementation("org.apache.activemq:artemis-jakarta-server") @@ -131,9 +131,9 @@ dependencies { benchmarkImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1") benchmarkImplementation("org.openjdk.jmh:jmh-core:1.36") kaptBenchmark("org.openjdk.jmh:jmh-generator-annprocess:1.36") - kaptBenchmark("org.springframework.boot:spring-boot-configuration-processor:3.1.1") + kaptBenchmark("org.springframework.boot:spring-boot-configuration-processor:3.1.4") - developmentOnly("org.springframework.boot:spring-boot-devtools:3.1.1") + developmentOnly("org.springframework.boot:spring-boot-devtools:3.1.4") } val webui = "$rootDir/komga-webui"