mirror of
https://github.com/InsanusMokrassar/PlaguPoster.git
synced 2024-11-04 15:23:46 +00:00
62 lines
1.4 KiB
Groovy
62 lines
1.4 KiB
Groovy
|
project.version = "$version"
|
||
|
project.group = "$group"
|
||
|
|
||
|
// apply from: "$publishGradlePath"
|
||
|
|
||
|
kotlin {
|
||
|
jvm {
|
||
|
compilations.main {
|
||
|
kotlinOptions {
|
||
|
jvmTarget = "1.8"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
js (IR) {
|
||
|
browser()
|
||
|
nodejs()
|
||
|
}
|
||
|
android {
|
||
|
publishAllLibraryVariants()
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
commonMain {
|
||
|
dependencies {
|
||
|
implementation libs.kotlin
|
||
|
api libs.kotlin.serialization
|
||
|
}
|
||
|
}
|
||
|
commonTest {
|
||
|
dependencies {
|
||
|
implementation libs.kotlin.test.common
|
||
|
implementation libs.kotlin.test.annotations.common
|
||
|
}
|
||
|
}
|
||
|
jvmTest {
|
||
|
dependencies {
|
||
|
implementation libs.kotlin.test.junit
|
||
|
}
|
||
|
}
|
||
|
jsTest {
|
||
|
dependencies {
|
||
|
implementation libs.kotlin.test.js
|
||
|
implementation libs.kotlin.test.junit
|
||
|
}
|
||
|
}
|
||
|
androidTest {
|
||
|
dependencies {
|
||
|
implementation libs.kotlin.test.junit
|
||
|
implementation libs.android.test.junit
|
||
|
implementation libs.android.test.espresso.core
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
java {
|
||
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
|
||
|
apply from: "$defaultAndroidSettingsPresetPath"
|