feat: integriere WizardRuntime in EventWizardViewModel und erweitere Schritt-Logik
Desktop CI — Headless Tests & Build / Compose Desktop — Tests (headless) & Build (push) Has been cancelled
Build and Publish Docker Images / build-and-push (., backend/infrastructure/gateway/Dockerfile, api-gateway, api-gateway) (push) Has been cancelled
Build and Publish Docker Images / build-and-push (., backend/services/ping/Dockerfile, ping-service, ping-service) (push) Has been cancelled
Build and Publish Docker Images / build-and-push (., config/docker/caddy/web-app/Dockerfile, web-app, web-app) (push) Has been cancelled
Build and Publish Docker Images / build-and-push (., config/docker/keycloak/Dockerfile, keycloak, keycloak) (push) Has been cancelled

Signed-off-by: StefanMoCoAt <stefan.mo.co@gmail.com>
This commit is contained in:
2026-04-21 17:44:27 +02:00
parent 9556e0ac67
commit 19ba044ec0
3 changed files with 105 additions and 36 deletions
+22 -16
View File
@@ -23,24 +23,30 @@ kotlin {
}
sourceSets {
val commonMain by getting {
dependencies {
implementation(projects.frontend.core.navigation)
implementation(projects.frontend.core.domain)
implementation(libs.kotlinx.coroutines.core)
implementation(libs.kotlinx.serialization.json)
}
commonMain.dependencies {
implementation(projects.frontend.core.navigation)
implementation(projects.frontend.core.domain)
implementation(libs.kotlinx.coroutines.core)
implementation(libs.kotlinx.serialization.json)
}
val commonTest by getting {
dependencies {
implementation(libs.kotlin.test)
}
commonTest.dependencies {
implementation(libs.kotlin.test)
}
val jvmMain by getting
val wasmJsMain by getting {
dependencies {
implementation(libs.kotlin.stdlib.wasm.js)
}
jvmMain.dependencies {
implementation(projects.frontend.core.navigation)
implementation(projects.frontend.core.domain)
}
jvmTest.dependencies {
implementation(libs.kotlin.test)
}
}
sourceSets.commonTest.dependencies {
implementation(kotlin("test"))
}
}