mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-10-31 21:43:49 +00:00
73 lines
1.7 KiB
Groovy
73 lines
1.7 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 kotlin('stdlib')
|
|
implementation libs.kt.serialization
|
|
implementation compose.runtime
|
|
}
|
|
}
|
|
commonTest {
|
|
dependencies {
|
|
implementation kotlin('test-common')
|
|
implementation kotlin('test-annotations-common')
|
|
}
|
|
}
|
|
jvmMain {
|
|
dependencies {
|
|
implementation compose.desktop.currentOs
|
|
}
|
|
}
|
|
jvmTest {
|
|
dependencies {
|
|
implementation kotlin('test-junit')
|
|
}
|
|
}
|
|
jsMain {
|
|
dependencies {
|
|
implementation compose.web.core
|
|
}
|
|
}
|
|
jsTest {
|
|
dependencies {
|
|
implementation kotlin('test-js')
|
|
implementation kotlin('test-junit')
|
|
}
|
|
}
|
|
androidTest {
|
|
dependencies {
|
|
implementation kotlin('test-junit')
|
|
implementation libs.android.test.junit
|
|
implementation libs.android.espresso
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
apply from: "$defaultAndroidSettingsPresetPath"
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|