MicroUtils/mppProjectWithSerialization

39 lines
897 B
Plaintext
Raw Normal View History

2020-09-15 12:57:41 +00:00
project.version = "$version"
project.group = "$group"
2020-09-27 14:25:42 +00:00
apply from: "$publishGradlePath"
2020-09-15 12:57:41 +00:00
kotlin {
jvm()
js (BOTH) {
2020-10-16 11:59:51 +00:00
browser()
2020-09-15 12:57:41 +00:00
nodejs()
}
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
2020-09-26 15:23:53 +00:00
api "org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlin_serialisation_core_version"
2020-09-15 12:57:41 +00:00
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
}
}
jvmTest {
dependencies {
implementation kotlin('test-junit')
}
}
jsTest {
dependencies {
implementation kotlin('test-js')
implementation kotlin('test-junit')
}
}
}
2020-10-12 16:54:05 +00:00
}