2021-03-01 20:43:30 +00:00
|
|
|
project.version = "$version" + (System.getenv("additional_version") != null ? System.getenv("additional_version") : "")
|
2021-03-01 16:42:15 +00:00
|
|
|
project.group = "$group"
|
|
|
|
|
|
|
|
// apply from: "$publishGradlePath"
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
js (IR) {
|
2022-11-10 17:48:59 +00:00
|
|
|
browser()
|
|
|
|
binaries.executable()
|
2021-03-01 16:42:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('stdlib')
|
2023-07-10 09:00:35 +00:00
|
|
|
api libs.kt.serialization
|
2021-03-01 16:42:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
commonTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-common')
|
|
|
|
implementation kotlin('test-annotations-common')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jsTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-js')
|
|
|
|
implementation kotlin('test-junit')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|