- Introduced ÖTO 2026-compliant seed data (`V008__Seed_OETO_2026_Data.sql`) for tournament classes, license matrix, and age groups. - Added `RegulationSeedVerificationTest` to validate repository queries and domain eligibility logic. - Implemented a new `profile-feature` module covering user profile management and ZNS linking. - Integrated the `profile-feature` into the desktop shell and frontend with Koin DI configuration. - Extended CHANGELOG, ROADMAP, and architecture documentation to reflect related changes. Signed-off-by: Stefan Mogeritsch <stefan.mo.co@gmail.com>
53 lines
1.4 KiB
Plaintext
53 lines
1.4 KiB
Plaintext
/**
|
|
* Dieses Modul kapselt die UI und Logik für die Profil-Verwaltung und den ZNS-Link.
|
|
*/
|
|
plugins {
|
|
alias(libs.plugins.kotlinMultiplatform)
|
|
alias(libs.plugins.composeMultiplatform)
|
|
alias(libs.plugins.composeCompiler)
|
|
alias(libs.plugins.kotlinSerialization)
|
|
}
|
|
|
|
group = "at.mocode.clients"
|
|
version = "1.0.0"
|
|
|
|
kotlin {
|
|
jvm()
|
|
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
implementation(projects.frontend.core.designSystem)
|
|
implementation(projects.frontend.core.network)
|
|
implementation(projects.frontend.core.sync)
|
|
implementation(projects.frontend.core.localDb)
|
|
implementation(projects.frontend.core.auth)
|
|
implementation(projects.frontend.core.domain)
|
|
|
|
implementation(compose.foundation)
|
|
implementation(compose.runtime)
|
|
implementation(compose.material3)
|
|
implementation(compose.ui)
|
|
implementation(compose.components.resources)
|
|
implementation(compose.materialIconsExtended)
|
|
|
|
implementation(libs.bundles.kmp.common)
|
|
implementation(libs.bundles.ktor.client.common)
|
|
implementation(libs.bundles.compose.common)
|
|
|
|
implementation(libs.koin.core)
|
|
implementation(libs.koin.compose)
|
|
}
|
|
|
|
commonTest.dependencies {
|
|
implementation(libs.kotlin.test)
|
|
implementation(libs.kotlinx.coroutines.test)
|
|
implementation(libs.ktor.client.mock)
|
|
}
|
|
|
|
jvmMain.dependencies {
|
|
implementation(libs.ktor.client.cio)
|
|
implementation(compose.uiTooling)
|
|
}
|
|
}
|
|
}
|