chore: migriere core/sync Modul auf Module Structure Blueprint, setze group und version, füge wasmJsMain Dependency hinzu

This commit is contained in:
Stefan Mogeritsch 2026-04-19 16:52:06 +02:00
parent b19f7cadb8
commit 28a7c5dc44

View File

@ -7,6 +7,9 @@ plugins {
alias(libs.plugins.kotlinSerialization)
}
group = "at.mocode.frontend.core"
version = "1.0.0"
kotlin {
jvm()
@ -38,6 +41,14 @@ kotlin {
implementation(libs.koin.core)
}
jvmMain.dependencies {
// Reserviert für Plattform-spezifische Sync-Logik (z.B. Dateisystem-basierter Cache)
}
wasmJsMain.dependencies {
implementation(libs.kotlin.stdlib.wasm.js)
}
commonTest.dependencies {
implementation(libs.kotlin.test)
}