Enable coroutines.

This commit is contained in:
Florian THIERRY
2025-04-23 21:56:14 +02:00
parent ee26a56627
commit ed0acfc5dc
5 changed files with 17 additions and 12 deletions

View File

@@ -6,13 +6,17 @@ plugins {
dependencies {
implementation(kotlin("stdlib"))
implementation(kotlin("reflect"))
implementation(project(":demo-domain"))
implementation(project(":demo-application"))
implementation(project(":demo-infrastructure"))
implementation(project(":demo-exposition"))
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
implementation("org.springframework.boot:spring-boot-starter-webflux")
}
springBoot {
mainClass = "com.example.demo.launcher.ApplicationLauncherKt"
}
}