mirror of
https://github.com/gotson/komga.git
synced 2025-12-06 08:32:25 +01:00
deps(komga): bump Spring Boot to 3.5.3
This commit is contained in:
parent
267292d73e
commit
9ac225bf4f
2 changed files with 7 additions and 7 deletions
|
|
@ -9,7 +9,7 @@ plugins {
|
|||
kotlin("jvm")
|
||||
kotlin("plugin.spring")
|
||||
kotlin("kapt")
|
||||
id("org.springframework.boot") version "3.4.0"
|
||||
id("org.springframework.boot") version "3.5.3"
|
||||
id("com.gorylenko.gradle-git-properties") version "2.4.2"
|
||||
id("nu.studer.jooq") version "9.0"
|
||||
id("org.flywaydb.flyway") version "10.20.1"
|
||||
|
|
@ -38,7 +38,7 @@ dependencies {
|
|||
implementation(kotlin("stdlib"))
|
||||
implementation(kotlin("reflect"))
|
||||
|
||||
api(platform("org.springframework.boot:spring-boot-dependencies:3.4.0"))
|
||||
api(platform("org.springframework.boot:spring-boot-dependencies:3.5.3"))
|
||||
|
||||
api("org.springframework.boot:spring-boot-starter-web")
|
||||
implementation("org.springframework.boot:spring-boot-starter-webflux")
|
||||
|
|
@ -52,7 +52,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.4.0")
|
||||
kapt("org.springframework.boot:spring-boot-configuration-processor:3.5.3")
|
||||
|
||||
implementation("org.flywaydb:flyway-core")
|
||||
|
||||
|
|
@ -128,9 +128,9 @@ dependencies {
|
|||
benchmarkImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
|
||||
benchmarkImplementation("org.openjdk.jmh:jmh-core:1.37")
|
||||
kaptBenchmark("org.openjdk.jmh:jmh-generator-annprocess:1.37")
|
||||
kaptBenchmark("org.springframework.boot:spring-boot-configuration-processor:3.4.0")
|
||||
kaptBenchmark("org.springframework.boot:spring-boot-configuration-processor:3.5.3")
|
||||
|
||||
developmentOnly("org.springframework.boot:spring-boot-devtools:3.4.0")
|
||||
developmentOnly("org.springframework.boot:spring-boot-devtools:3.5.3")
|
||||
}
|
||||
|
||||
val webui = "$rootDir/komga-webui"
|
||||
|
|
|
|||
|
|
@ -8,11 +8,11 @@ import org.springframework.core.task.AsyncTaskExecutor
|
|||
|
||||
@Configuration
|
||||
class AsynchronousSpringEventsConfig(
|
||||
private val taskExecutor: AsyncTaskExecutor,
|
||||
private val applicationTaskExecutor: AsyncTaskExecutor,
|
||||
) {
|
||||
@Bean("applicationEventMulticaster")
|
||||
fun simpleApplicationEventMulticaster(): ApplicationEventMulticaster =
|
||||
SimpleApplicationEventMulticaster().apply {
|
||||
setTaskExecutor(taskExecutor)
|
||||
setTaskExecutor(applicationTaskExecutor)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue