build(komga-deps): bump spring boot from 3.1.1 to 3.1.4

This commit is contained in:
Gauthier Roebroeck 2023-10-04 14:45:10 +08:00
parent 00278e95b9
commit 1372aad899
2 changed files with 6 additions and 8 deletions

View file

@ -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)

View file

@ -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"