- Updated Gradle version in `.env`, Dockerfiles, and wrapper to 9.3.1. - Replaced alias-based application of `kotlinMultiplatform` plugin with direct `id` usage in subprojects to resolve "Plugin loaded multiple times" error. - Applied centralized plugin management and Gradle daemon optimizations to improve Docker build stability and address KMP classloading issues.
35 lines
747 B
Plaintext
35 lines
747 B
Plaintext
/**
|
|
* Dieses Modul definiert nur die Navigationsrouten.
|
|
* Es ist noch simpler.
|
|
*/
|
|
plugins {
|
|
// Fix for "Plugin loaded multiple times": Apply plugin by ID without version (inherited from root)
|
|
id("org.jetbrains.kotlin.multiplatform")
|
|
}
|
|
|
|
group = "at.mocode.clients.shared"
|
|
version = "1.0.0"
|
|
|
|
kotlin {
|
|
jvm()
|
|
js {
|
|
binaries.library()
|
|
// Re-enabled browser environment after Root NodeJs fix
|
|
browser {
|
|
testTask {
|
|
enabled = false
|
|
}
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
// Depend on core domain for User/Role types used by navigation API
|
|
implementation(project(":frontend:core:domain"))
|
|
}
|
|
commonTest.dependencies {
|
|
implementation(libs.kotlin.test)
|
|
}
|
|
}
|
|
}
|