MicroUtils/mppProjectWithSerialization

50 lines
1.1 KiB
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
repositories {
jcenter()
mavenCentral()
maven { url "https://kotlin.bintray.com/kotlinx" }
2020-09-28 06:02:32 +00:00
mavenLocal()
2020-09-15 12:57:41 +00:00
}
kotlin {
jvm()
js (BOTH) {
2020-10-14 18:26:37 +00:00
browser {
dceTask {
dceOptions.devMode = true
}
}
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
}