chore: füge Core-Wizard-Modul hinzu und integriere in Veranstaltung-Feature

Signed-off-by: StefanMoCoAt <stefan.mo.co@gmail.com>
This commit is contained in:
2026-04-21 17:02:26 +02:00
parent b11432df16
commit 4692bd186c
4 changed files with 49 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
@file:OptIn(ExperimentalWasmDsl::class)
import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
plugins {
alias(libs.plugins.kotlinMultiplatform)
alias(libs.plugins.kotlinSerialization)
}
group = "at.mocode.frontend.core"
version = "1.0.0"
kotlin {
jvm()
wasmJs {
binaries.library()
browser {
testTask {
enabled = false
}
}
}
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)
}
}
val commonTest by getting {
dependencies {
implementation(libs.kotlin.test)
}
}
val jvmMain by getting
val wasmJsMain by getting {
dependencies {
implementation(libs.kotlin.stdlib.wasm.js)
}
}
}
}
@@ -30,6 +30,7 @@ kotlin {
implementation(projects.frontend.core.designSystem)
implementation(projects.frontend.core.network)
implementation(projects.frontend.core.domain)
implementation(project(":frontend:core:wizard"))
implementation(projects.core.coreDomain)
implementation(projects.frontend.core.auth)
implementation(projects.frontend.features.vereinFeature)