[stdlib-mpp] Single dependency on stdlib in commonMain

In this project it's required to declare stdlib dependency explicitly,
but now it can be a single line in commonMain
This commit is contained in:
Ilya Gorbunov
2023-08-16 03:34:12 +02:00
committed by Space Team
parent 16e61f978c
commit 35bca103eb
4 changed files with 5 additions and 29 deletions
@@ -12,19 +12,13 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation(kotlin("stdlib-common"))
implementation(kotlinStdlib())
}
}
val jvmMain by getting {
dependencies {
implementation(kotlin("stdlib-jdk8"))
}
}
val jsMain by getting {
dependencies {
implementation(kotlin("stdlib-js"))
}
}
}
}