mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-04 15:33:48 +00:00
51 lines
1.3 KiB
Groovy
51 lines
1.3 KiB
Groovy
project.version = "$version"
|
|
project.group = "$group"
|
|
|
|
apply from: "$publishGradlePath"
|
|
|
|
kotlin {
|
|
jvm()
|
|
js (IR) {
|
|
browser()
|
|
nodejs()
|
|
}
|
|
android {
|
|
publishAllLibraryVariants()
|
|
}
|
|
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
implementation kotlin('stdlib')
|
|
api "org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlin_serialisation_core_version"
|
|
}
|
|
}
|
|
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')
|
|
}
|
|
}
|
|
androidTest {
|
|
dependencies {
|
|
implementation kotlin('test-junit')
|
|
implementation "androidx.test.ext:junit:$test_ext_junit_version"
|
|
implementation "androidx.test.espresso:espresso-core:$espresso_core"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
apply from: "$defaultAndroidSettingsPresetPath"
|