MicroUtils/mppProjectWithSerialization

50 lines
1.1 KiB
Plaintext
Raw Normal View History

2020-09-15 18:57:41 +06:00
project.version = "$version"
project.group = "$group"
2020-09-27 20:25:42 +06:00
apply from: "$publishGradlePath"
2020-09-15 18:57:41 +06:00
repositories {
jcenter()
mavenCentral()
maven { url "https://kotlin.bintray.com/kotlinx" }
2020-09-28 12:02:32 +06:00
mavenLocal()
2020-09-15 18:57:41 +06:00
}
kotlin {
jvm()
js (BOTH) {
2020-10-15 00:26:37 +06:00
browser {
dceTask {
dceOptions.devMode = true
}
}
2020-09-15 18:57:41 +06:00
nodejs()
}
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
2020-09-26 21:23:53 +06:00
api "org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlin_serialisation_core_version"
2020-09-15 18:57:41 +06: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 22:54:05 +06:00
}