/** * Feature-Modul: Veranstalter-Verwaltung (Desktop-only) * Kapselt alle Screens und Logik für Veranstalter-Auswahl, -Detail und -Neuanlage. */ plugins { alias(libs.plugins.kotlinMultiplatform) alias(libs.plugins.composeMultiplatform) alias(libs.plugins.composeCompiler) } group = "at.mocode.clients" version = "1.0.0" kotlin { jvm() sourceSets { jvmMain.dependencies { implementation(projects.frontend.core.designSystem) implementation(projects.frontend.core.domain) implementation(projects.frontend.core.network) implementation(projects.frontend.core.navigation) implementation(compose.desktop.currentOs) implementation(compose.foundation) implementation(compose.runtime) implementation(compose.material3) implementation(compose.ui) implementation(compose.materialIconsExtended) implementation(libs.bundles.kmp.common) implementation(libs.koin.core) implementation(libs.koin.compose) implementation(libs.koin.compose.viewmodel) // Ktor client for repository implementation implementation(libs.ktor.client.core) } } }